public enum EnvelopeFields extends Enum<EnvelopeFields>
Enum Constant and Description |
---|
Depth |
IceConcentration |
LandDistance |
PrimaryProduction |
Salinity |
Temperature |
Modifier and Type | Method and Description |
---|---|
static EnvelopeFields |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EnvelopeFields[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnvelopeFields Depth
public static final EnvelopeFields Temperature
public static final EnvelopeFields Salinity
public static final EnvelopeFields IceConcentration
public static final EnvelopeFields LandDistance
public static final EnvelopeFields PrimaryProduction
public static EnvelopeFields[] values()
for (EnvelopeFields c : EnvelopeFields.values()) System.out.println(c);
public static EnvelopeFields 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 nullCopyright © 2017. All Rights Reserved.