public static enum TabbedAddeManager.Event extends Enum<TabbedAddeManager.Event>
EventBus.publish(Object)
method.Enum Constant and Description |
---|
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.
|
Modifier and Type | Method and Description |
---|---|
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.
|
public static final TabbedAddeManager.Event OPENED
public static final TabbedAddeManager.Event HIDDEN
public static final TabbedAddeManager.Event SHOWN
public static final TabbedAddeManager.Event CLOSED
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 nameNullPointerException
- if the argument is null