public enum FaultStyle extends Enum<FaultStyle>
| Enum Constant and Description |
|---|
NORMAL
Normal fault identifier.
|
REVERSE
Reverse fault identifier.
|
REVERSE_OBLIQUE
Reverse-oblique identifier.
|
STRIKE_SLIP
Strike-slip fault identifier.
|
UNKNOWN
Unknown fault style identifier.
|
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static FaultStyle |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FaultStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FaultStyle STRIKE_SLIP
public static final FaultStyle NORMAL
public static final FaultStyle REVERSE
public static final FaultStyle REVERSE_OBLIQUE
public static final FaultStyle UNKNOWN
public static FaultStyle[] values()
for (FaultStyle c : FaultStyle.values()) System.out.println(c);
public static FaultStyle 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()
toString in class Enum<FaultStyle>