public enum ParameterEnum extends Enum<ParameterEnum>
Java class for parameterEnum.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="parameterEnum">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="current"/>
<enumeration value="windVector"/>
<enumeration value="soundSpeed"/>
<enumeration value="airTemperature"/>
<enumeration value="airPressure"/>
<enumeration value="density"/>
<enumeration value="salinity"/>
<enumeration value="seaState"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
AIR_PRESSURE |
AIR_TEMPERATURE |
CURRENT |
DENSITY |
SALINITY |
SEA_STATE |
SOUND_SPEED |
WIND_VECTOR |
| Modifier and Type | Method and Description |
|---|---|
static ParameterEnum |
fromValue(String v) |
String |
value() |
static ParameterEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ParameterEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ParameterEnum CURRENT
public static final ParameterEnum WIND_VECTOR
public static final ParameterEnum SOUND_SPEED
public static final ParameterEnum AIR_TEMPERATURE
public static final ParameterEnum AIR_PRESSURE
public static final ParameterEnum DENSITY
public static final ParameterEnum SALINITY
public static final ParameterEnum SEA_STATE
public static ParameterEnum[] values()
for (ParameterEnum c : ParameterEnum.values()) System.out.println(c);
public static ParameterEnum 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 value()
public static ParameterEnum fromValue(String v)