public static enum GroupElement.Representation extends Enum<GroupElement.Representation>
| 枚举常量和说明 |
|---|
CACHED
Cached: $(Y+X,Y-X,Z,2dT)$
|
P1P1
Completed ($P \times P$): $((X:Z),(Y:T))$ satisfying $x=X/Z, y=Y/T$
|
P2
Projective ($P^2$): $(X:Y:Z)$ satisfying $x=X/Z, y=Y/Z$
|
P3
Extended ($P^3$): $(X:Y:Z:T)$ satisfying $x=X/Z, y=Y/Z, XY=ZT$
|
PRECOMP
Precomputed (Duif): $(y+x,y-x,2dxy)$
|
| 限定符和类型 | 方法和说明 |
|---|---|
static GroupElement.Representation |
valueOf(String name)
返回带有指定名称的该类型的枚举常量。
|
static GroupElement.Representation[] |
values()
按照声明该枚举类型的常量的顺序, 返回
包含这些常量的数组。
|
public static final GroupElement.Representation P2
public static final GroupElement.Representation P3
public static final GroupElement.Representation P1P1
public static final GroupElement.Representation PRECOMP
public static final GroupElement.Representation CACHED
public static GroupElement.Representation[] values()
for (GroupElement.Representation c : GroupElement.Representation.values()) System.out.println(c);
public static GroupElement.Representation valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值Copyright © 2024 oceanbase.com. All rights reserved.