edu.wisc.ssec.mcidasv.servermanager
Enum LocalAddeEntry.ServerName

java.lang.Object
  extended by java.lang.Enum<LocalAddeEntry.ServerName>
      extended by edu.wisc.ssec.mcidasv.servermanager.LocalAddeEntry.ServerName
All Implemented Interfaces:
Serializable, Comparable<LocalAddeEntry.ServerName>
Enclosing class:
LocalAddeEntry

public static enum LocalAddeEntry.ServerName
extends Enum<LocalAddeEntry.ServerName>


Enum Constant Summary
AMRR
           
AMSR
           
AREA
           
FSDX
           
GINI
           
INVALID
           
LV1B
           
MD
           
MOD4
           
MOD8
           
MODR
           
MODS
           
MODX
           
MSGT
           
MTST
           
OMTP
           
SMIN
           
TMIN
           
 
Method Summary
static LocalAddeEntry.ServerName valueOf(String name)
          Returns the enum constant of this type with the specified name.
static LocalAddeEntry.ServerName[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

AREA

public static final LocalAddeEntry.ServerName AREA

AMSR

public static final LocalAddeEntry.ServerName AMSR

AMRR

public static final LocalAddeEntry.ServerName AMRR

GINI

public static final LocalAddeEntry.ServerName GINI

FSDX

public static final LocalAddeEntry.ServerName FSDX

OMTP

public static final LocalAddeEntry.ServerName OMTP

LV1B

public static final LocalAddeEntry.ServerName LV1B

MODS

public static final LocalAddeEntry.ServerName MODS

MODX

public static final LocalAddeEntry.ServerName MODX

MOD4

public static final LocalAddeEntry.ServerName MOD4

MOD8

public static final LocalAddeEntry.ServerName MOD8

MODR

public static final LocalAddeEntry.ServerName MODR

MSGT

public static final LocalAddeEntry.ServerName MSGT

MTST

public static final LocalAddeEntry.ServerName MTST

SMIN

public static final LocalAddeEntry.ServerName SMIN

TMIN

public static final LocalAddeEntry.ServerName TMIN

MD

public static final LocalAddeEntry.ServerName MD

INVALID

public static final LocalAddeEntry.ServerName INVALID
Method Detail

values

public static LocalAddeEntry.ServerName[] 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 (LocalAddeEntry.ServerName c : LocalAddeEntry.ServerName.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static LocalAddeEntry.ServerName valueOf(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:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null