edu.wisc.ssec.mcidasv.servermanager
Enum AddeEntry.EntryStatus

java.lang.Object
  extended by java.lang.Enum<AddeEntry.EntryStatus>
      extended by edu.wisc.ssec.mcidasv.servermanager.AddeEntry.EntryStatus
All Implemented Interfaces:
Serializable, Comparable<AddeEntry.EntryStatus>
Enclosing interface:
AddeEntry

public static enum AddeEntry.EntryStatus
extends Enum<AddeEntry.EntryStatus>

Has the user elected to disable this entry from appearing in its relevant chooser?


Enum Constant Summary
DISABLED
          Entry is valid and toggled off.
ENABLED
          Entry is valid and toggled on.
INVALID
          Something is wrong with this entry.
 
Method Summary
static AddeEntry.EntryStatus fromStr(String str)
           
static String toStr(AddeEntry.EntryType type)
           
static AddeEntry.EntryStatus valueOf(String name)
          Returns the enum constant of this type with the specified name.
static AddeEntry.EntryStatus[] 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

ENABLED

public static final AddeEntry.EntryStatus ENABLED
Entry is valid and toggled on.


DISABLED

public static final AddeEntry.EntryStatus DISABLED
Entry is valid and toggled off.


INVALID

public static final AddeEntry.EntryStatus INVALID
Something is wrong with this entry.

Method Detail

values

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

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

valueOf

public static AddeEntry.EntryStatus 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

fromStr

public static AddeEntry.EntryStatus fromStr(String str)

toStr

public static String toStr(AddeEntry.EntryType type)