public static enum VectorInfo.VectorField extends Enum<VectorInfo.VectorField>
Enum Constant and Description |
---|
Complex
Complex numbers
|
Integer
Integers
|
Pattern
Pattern matrix.
|
Real
Real numbers
|
Modifier and Type | Method and Description |
---|---|
static VectorInfo.VectorField |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static VectorInfo.VectorField[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VectorInfo.VectorField Real
public static final VectorInfo.VectorField Integer
public static final VectorInfo.VectorField Complex
public static final VectorInfo.VectorField Pattern
public static VectorInfo.VectorField[] values()
for (VectorInfo.VectorField c : VectorInfo.VectorField.values()) System.out.println(c);
public static VectorInfo.VectorField 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 nullJump to the Parallel Colt Homepage