org.noaa.wmm
Enum PARAMS
java.lang.Object
java.lang.Enum<PARAMS>
org.noaa.wmm.PARAMS
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<PARAMS>
public enum PARAMS
- extends java.lang.Enum<PARAMS>
|
Method Summary |
static PARAMS |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static PARAMS[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared. |
| Methods inherited from class java.lang.Enum |
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
getClass, notify, notifyAll, wait, wait, wait |
ISO
public static final PARAMS ISO
MODELNAME
public static final PARAMS MODELNAME
PUBLISHER
public static final PARAMS PUBLISHER
RELEASEDATE
public static final PARAMS RELEASEDATE
DATACUTOFF
public static final PARAMS DATACUTOFF
MODELSTARTYEAR
public static final PARAMS MODELSTARTYEAR
MODELENDYEAR
public static final PARAMS MODELENDYEAR
EPOCH
public static final PARAMS EPOCH
INTERNALSTATICDEGREE
public static final PARAMS INTERNALSTATICDEGREE
INTERNALSECVARDEGREE
public static final PARAMS INTERNALSECVARDEGREE
EXTERNALSTATICDEGREE
public static final PARAMS EXTERNALSTATICDEGREE
EXTERNALSECVARDEGREE
public static final PARAMS EXTERNALSECVARDEGREE
GEOMAGREFRAD
public static final PARAMS GEOMAGREFRAD
NORMALIZATION
public static final PARAMS NORMALIZATION
SPATBASFUNC
public static final PARAMS SPATBASFUNC
values
public static PARAMS[] values()
- Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
for (PARAMS c : PARAMS.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static PARAMS valueOf(java.lang.String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name - the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException - if this enum type has no constant
with the specified name
java.lang.NullPointerException - if the argument is null