public enum GmmElement extends Enum<GmmElement>
| Enum Constant and Description |
|---|
GROUND_MOTION_MODELS |
MODEL |
MODEL_SET |
UNCERTAINTY |
| Modifier and Type | Method and Description |
|---|---|
static GmmElement |
fromString(String s)
Converts supplied
String to equivalent GmmElement. |
String |
toString()
Returns a
CaseFormat#UPPER_CAMEL String representation of
this GmmElement. |
static GmmElement |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GmmElement[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GmmElement GROUND_MOTION_MODELS
public static final GmmElement UNCERTAINTY
public static final GmmElement MODEL_SET
public static final GmmElement MODEL
public static GmmElement[] values()
for (GmmElement c : GmmElement.values()) System.out.println(c);
public static GmmElement 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 String toString()
CaseFormat#UPPER_CAMEL String representation of
this GmmElement.toString in class Enum<GmmElement>public static GmmElement fromString(String s)
String to equivalent GmmElement. Method
expects a String with CaseFormat#UPPER_CAMELs - String to convertGmmElementIllegalArgumentException - if supplied String is incorrectly
formatted or no matching GmmElement existsCaseFormat