public static enum GroupElement.Representation extends java.lang.Enum<GroupElement.Representation>
列挙型定数 | 説明 |
---|---|
CACHED |
Cached: (Y+X,Y-X,Z,2dT)
|
P1P1 |
Completed (P x 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(java.lang.String name) |
指定した名前を持つこの型の列挙型定数を返します。
文字列は、この型の列挙型定数を宣言するのに使用した識別子と正確に
一致している必要があります。(余分な空白文字を含めることは
できません。)
|
static GroupElement.Representation[] |
values() |
この列挙型の定数を含む配列を宣言されている順序で返します。
このメソッドは次のようにして定数を反復するために
使用できます:
for (GroupElement.Representation c : GroupElement.Representation.values()) System.out.println(c); |
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(java.lang.String name)
name
- 返される列挙型定数の名前。java.lang.IllegalArgumentException
- この列挙型に、指定した名前の定数がない場合java.lang.NullPointerException
- 引数がnullの場合