|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<TabbedAddeManager.Event>
edu.wisc.ssec.mcidasv.servermanager.TabbedAddeManager.Event
public static 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 |
---|
public static final TabbedAddeManager.Event OPENED
public static final TabbedAddeManager.Event HIDDEN
public static final TabbedAddeManager.Event SHOWN
public static final TabbedAddeManager.Event CLOSED
Method Detail |
---|
public static TabbedAddeManager.Event[] values()
for (TabbedAddeManager.Event c : TabbedAddeManager.Event.values()) System.out.println(c);
public static TabbedAddeManager.Event valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |