public enum EnvelopeName extends java.lang.Enum<EnvelopeName>
Enum Constant and Description |
---|
ICE_CONCENTRATION |
LAND_DISTANCE |
PRIMARY_PRODUCTION |
SALINITY |
TEMPERATURE |
Modifier and Type | Method and Description |
---|---|
static EnvelopeName |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnvelopeName[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnvelopeName TEMPERATURE
public static final EnvelopeName SALINITY
public static final EnvelopeName PRIMARY_PRODUCTION
public static final EnvelopeName ICE_CONCENTRATION
public static final EnvelopeName LAND_DISTANCE
public static EnvelopeName[] values()
for (EnvelopeName c : EnvelopeName.values()) System.out.println(c);
public static EnvelopeName valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified namejava.lang.NullPointerException
- if the argument is null