public enum DataType extends Enum<DataType>
| Enum Constant and Description |
|---|
BINARY
Binary hazard curves.
|
GMM
Ground motion model specific data.
|
SOURCE
Data by
SourceType. |
TOTAL
Total hazard curves or magnitude-frequency distributions, etc.
|
| Modifier and Type | Method and Description |
|---|---|
static DataType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DataType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataType TOTAL
public static final DataType GMM
public static final DataType SOURCE
SourceType.public static final DataType BINARY
The output format is a NSHMP file format that works with a number of legacy fortran codes still in use. See nshmp-haz-fortran. Users should be aware that the format has certain restrictions, for instance, the maximum number of intensity measure levels that can be accomodated is 20. Buyer beware.
public static DataType[] values()
for (DataType c : DataType.values()) System.out.println(c);
public static DataType 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