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

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

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

These are the various "events" that the server manager GUI supports. These are published via the wonderful EventBus.publish(Object) method.


Enum Constant Summary
CLOSED
          The GUI was closed.
HIDDEN
          The GUI was hidden/minimized/etc.
OPENED
          The GUI was created.
SHOWN
          GUI was unhidden or some such thing.
 
Method Summary
static TabbedAddeManager.Event valueOf(String name)
          Returns the enum constant of this type with the specified name.
static TabbedAddeManager.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

OPENED

public static final TabbedAddeManager.Event OPENED
The GUI was created.


HIDDEN

public static final TabbedAddeManager.Event HIDDEN
The GUI was hidden/minimized/etc.


SHOWN

public static final TabbedAddeManager.Event SHOWN
GUI was unhidden or some such thing.


CLOSED

public static final TabbedAddeManager.Event CLOSED
The GUI was closed.

Method Detail

values

public static TabbedAddeManager.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 (TabbedAddeManager.Event c : TabbedAddeManager.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 TabbedAddeManager.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