org.osm2world.core.map_elevation.data
public enum GroundState extends Enum<GroundState>
Modifier and Type | Method and Description |
---|---|
boolean |
isHigherThan(GroundState other) |
static GroundState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GroundState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GroundState ON
public static final GroundState ABOVE
public static final GroundState BELOW
public static GroundState[] values()
for (GroundState c : GroundState.values()) System.out.println(c);
public static GroundState 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 nullpublic boolean isHigherThan(GroundState other)