edu.wisc.ssec.mcidasv.servermanager
Enum RemoteEntryEditor.AddeStatus

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

public static enum RemoteEntryEditor.AddeStatus
extends Enum<RemoteEntryEditor.AddeStatus>

Possible entry verification states.


Enum Constant Summary
BAD_ACCOUNTING
           
BAD_GROUP
           
BAD_SERVER
           
NO_METADATA
           
OK
           
PREFLIGHT
           
 
Method Summary
static RemoteEntryEditor.AddeStatus valueOf(String name)
          Returns the enum constant of this type with the specified name.
static RemoteEntryEditor.AddeStatus[] 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

PREFLIGHT

public static final RemoteEntryEditor.AddeStatus PREFLIGHT

BAD_SERVER

public static final RemoteEntryEditor.AddeStatus BAD_SERVER

BAD_ACCOUNTING

public static final RemoteEntryEditor.AddeStatus BAD_ACCOUNTING

NO_METADATA

public static final RemoteEntryEditor.AddeStatus NO_METADATA

OK

public static final RemoteEntryEditor.AddeStatus OK

BAD_GROUP

public static final RemoteEntryEditor.AddeStatus BAD_GROUP
Method Detail

values

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

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

valueOf

public static RemoteEntryEditor.AddeStatus 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