public enum Layer extends Enum<Layer>
Enum Constant and Description |
---|
DIFFERENCE |
HAGERSTRAND |
TRAVELTIME |
Modifier and Type | Method and Description |
---|---|
static Layer |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Layer[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Layer TRAVELTIME
public static final Layer DIFFERENCE
public static final Layer HAGERSTRAND
public static Layer[] values()
for (Layer c : Layer.values()) System.out.println(c);
public static Layer 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 © 2019. All rights reserved.