gov.nasa.gsfc.drl.rtstps.core.output.hdf5
Enum FixedDomainDescription
java.lang.Object
java.lang.Enum<FixedDomainDescription>
gov.nasa.gsfc.drl.rtstps.core.output.hdf5.FixedDomainDescription
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<FixedDomainDescription>
public enum FixedDomainDescription
- extends java.lang.Enum<FixedDomainDescription>
Domains as specified by the JPSS specification with the sole exception of drl
which is a local edition.
Methods inherited from class java.lang.Enum |
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, valueOf |
Methods inherited from class java.lang.Object |
getClass, notify, notifyAll, wait, wait, wait |
ops
public static final FixedDomainDescription ops
pop
public static final FixedDomainDescription pop
iAndt
public static final FixedDomainDescription iAndt
adr
public static final FixedDomainDescription adr
dev
public static final FixedDomainDescription dev
tia
public static final FixedDomainDescription tia
ada
public static final FixedDomainDescription ada
drl
public static final FixedDomainDescription drl
SCI
public static final FixedDomainDescription SCI
description
private java.lang.String description
values
public static FixedDomainDescription[] 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 (FixedDomainDescription c : FixedDomainDescription.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static FixedDomainDescription 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
getDescription
public java.lang.String getDescription()
toString
public java.lang.String toString()
- Return the string representation of the domains. The "iAndt" item
is converted to "int" which is the official designation. However since
int
is a keyword in Java, the name had to be changed in the enumeration.
- Overrides:
toString
in class java.lang.Enum<FixedDomainDescription>