public enum HeightMapDataType extends Enum<HeightMapDataType>
| Enum Constant and Description |
|---|
HAS_DATA |
NO_DATA |
TOO_HIGH |
TOO_LOW |
| Modifier and Type | Method and Description |
|---|---|
static HeightMapDataType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HeightMapDataType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HeightMapDataType NO_DATA
public static final HeightMapDataType HAS_DATA
public static final HeightMapDataType TOO_HIGH
public static final HeightMapDataType TOO_LOW
public static HeightMapDataType[] values()
for (HeightMapDataType c : HeightMapDataType.values()) System.out.println(c);
public static HeightMapDataType 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 nullCopyright © 2018–2022 NukkitX. All rights reserved.