public enum MfdType extends Enum<MfdType>
Mfds| Enum Constant and Description |
|---|
GR
An incremental Gutenberg-Richter MFD.
|
GR_TAPER
A Gutenberg-Richter MFD with a tapered upper tail.
|
INCR
An MFD defining multiple magnitudes with varying rates.
|
SINGLE
An MFD with a single magnitude and rate.
|
| Modifier and Type | Method and Description |
|---|---|
static MfdType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MfdType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MfdType SINGLE
public static final MfdType GR
public static final MfdType GR_TAPER
public static final MfdType INCR
public static MfdType[] values()
for (MfdType c : MfdType.values()) System.out.println(c);
public static MfdType 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 null