edu.wisc.ssec.mcidasv.servermanager
Enum EntryStore.Event

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

public static enum EntryStore.Event
extends Enum<EntryStore.Event>

Enumeration of the various server manager events.


Enum Constant Summary
ADDITION
          Entries were added.
FAILURE
          Something failed!
REMOVAL
          Entries were removed.
REPLACEMENT
          Entries were replaced.
STARTED
          Local servers started.
UNKNOWN
          Catch-all?
UPDATE
          Entries were updated.
 
Method Summary
static EntryStore.Event valueOf(String name)
          Returns the enum constant of this type with the specified name.
static EntryStore.Event[] 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

REPLACEMENT

public static final EntryStore.Event REPLACEMENT
Entries were replaced.


REMOVAL

public static final EntryStore.Event REMOVAL
Entries were removed.


ADDITION

public static final EntryStore.Event ADDITION
Entries were added.


UPDATE

public static final EntryStore.Event UPDATE
Entries were updated.


FAILURE

public static final EntryStore.Event FAILURE
Something failed!


STARTED

public static final EntryStore.Event STARTED
Local servers started.


UNKNOWN

public static final EntryStore.Event UNKNOWN
Catch-all?

Method Detail

values

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

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

valueOf

public static EntryStore.Event 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