public static enum HeightMapExporter.Format extends java.lang.Enum<HeightMapExporter.Format>
| Enum Constant and Description |
|---|
FLOAT_NORMALISED |
FLOAT_ONE_TO_ONE |
INTEGER_HIGH_RESOLUTION |
INTEGER_LOW_RESOLUTION |
| Modifier and Type | Method and Description |
|---|---|
static HeightMapExporter.Format |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static HeightMapExporter.Format[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HeightMapExporter.Format INTEGER_LOW_RESOLUTION
public static final HeightMapExporter.Format INTEGER_HIGH_RESOLUTION
public static final HeightMapExporter.Format FLOAT_NORMALISED
public static final HeightMapExporter.Format FLOAT_ONE_TO_ONE
public static HeightMapExporter.Format[] values()
for (HeightMapExporter.Format c : HeightMapExporter.Format.values()) System.out.println(c);
public static HeightMapExporter.Format valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null