public static enum FvParameters.NumericRepresentation extends Enum<FvParameters.NumericRepresentation>
Enum Constant and Description |
---|
FLOAT
Using Java 32 bit floating point
float numbers as coordinates. |
SCALED_BYTE
Using Java 8 bit bytes scaled to the given min-max range.
|
SCALED_SHORT
Using Java 16 bit integers scaled to the given min-max range.
|
Modifier and Type | Method and Description |
---|---|
static FvParameters.NumericRepresentation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FvParameters.NumericRepresentation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FvParameters.NumericRepresentation FLOAT
float
numbers as coordinates.public static final FvParameters.NumericRepresentation SCALED_SHORT
public static final FvParameters.NumericRepresentation SCALED_BYTE
public static FvParameters.NumericRepresentation[] values()
for (FvParameters.NumericRepresentation c : FvParameters.NumericRepresentation.values()) System.out.println(c);
public static FvParameters.NumericRepresentation 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 null