public enum LayerType extends Enum<LayerType>
| Enum Constant and Description |
|---|
Biodiversity |
Environment |
PointMap |
Prediction |
| Modifier and Type | Method and Description |
|---|---|
static LayerType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LayerType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LayerType Environment
public static final LayerType PointMap
public static final LayerType Prediction
public static final LayerType Biodiversity
public static LayerType[] values()
for (LayerType c : LayerType.values()) System.out.println(c);
public static LayerType 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 © 2016. All Rights Reserved.