public enum FieldTypes extends Enum<FieldTypes>
Field
,
BinaryField
,
PrimeField
Enum Constant and Description |
---|
BINARY_FIELD
Denotes fields of characteristic 2.
|
EXTENSION_FIELD
Denotes field extensions of prime characteristic fields.
|
PRIME_FIELD
Denotes fields of prime characteristic.
|
Modifier and Type | Method and Description |
---|---|
static FieldTypes |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FieldTypes[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FieldTypes BINARY_FIELD
public static final FieldTypes PRIME_FIELD
public static final FieldTypes EXTENSION_FIELD
public static FieldTypes[] values()
for (FieldTypes c : FieldTypes.values()) System.out.println(c);
public static FieldTypes 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.