public enum Layer3DDatasetType extends java.lang.Enum<Layer3DDatasetType>
The 3D dataset layer type.
| Enum Constant and Description |
|---|
GRID
Grid dataset layer.
|
IMAGE
Image dataset layer.
|
VECTOR
Vector dataset layer.
|
| Modifier and Type | Method and Description |
|---|---|
static Layer3DDatasetType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Layer3DDatasetType[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared.
|
public static final Layer3DDatasetType IMAGE
Image dataset layer.
public static final Layer3DDatasetType GRID
Grid dataset layer.
public static final Layer3DDatasetType VECTOR
Vector dataset layer.
public static Layer3DDatasetType[] values()
for (Layer3DDatasetType c : Layer3DDatasetType.values())
System.out.println(c);
public static Layer3DDatasetType 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