public enum BinaryCurveCoordinateTypes extends Enum<BinaryCurveCoordinateTypes> implements CoordinateTypes
BinaryWeierstrassCurveFactory
Enum Constant and Description |
---|
AFFINE
Denotes affine coordinates.
|
JACOBIAN
Denotes Jacobian coordinates.
|
LOPEZ_DAHAB
Denotes Lopez-Dahab coordinates.
|
PROJECTIVE
Denotes projective coordinates.
|
Modifier and Type | Method and Description |
---|---|
static BinaryCurveCoordinateTypes |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BinaryCurveCoordinateTypes[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BinaryCurveCoordinateTypes AFFINE
JACOBIAN
or LOPEZ_DAHAB
to get
improved performance.public static final BinaryCurveCoordinateTypes PROJECTIVE
JACOBIAN
or LOPEZ_DAHAB
.public static final BinaryCurveCoordinateTypes JACOBIAN
LOPEZ_DAHAB
.public static final BinaryCurveCoordinateTypes LOPEZ_DAHAB
public static BinaryCurveCoordinateTypes[] values()
for (BinaryCurveCoordinateTypes c : BinaryCurveCoordinateTypes.values()) System.out.println(c);
public static BinaryCurveCoordinateTypes valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2011–2022 Stiftung SIC. All rights reserved.