public static enum HeightMap3D.HeightMapType extends Enum<HeightMap3D.HeightMapType>
Enum Constant and Description |
---|
LINE
Draw height map as lines
|
POINTS
Draw height map as points
|
SOLID
Draw height map as a solid
|
SOLID_AND_WIRE
Draw solid and wire frame
|
TEXTURED
Draw height map as a textured solid
|
WIRE
Draw height map as wireframe
|
Modifier and Type | Method and Description |
---|---|
static HeightMap3D.HeightMapType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HeightMap3D.HeightMapType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HeightMap3D.HeightMapType POINTS
public static final HeightMap3D.HeightMapType LINE
public static final HeightMap3D.HeightMapType WIRE
public static final HeightMap3D.HeightMapType SOLID
public static final HeightMap3D.HeightMapType SOLID_AND_WIRE
public static final HeightMap3D.HeightMapType TEXTURED
public static HeightMap3D.HeightMapType[] values()
for (HeightMap3D.HeightMapType c : HeightMap3D.HeightMapType.values()) System.out.println(c);
public static HeightMap3D.HeightMapType 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