public static enum TabEvent.TAB_EVENT_TYPE extends java.lang.Enum<TabEvent.TAB_EVENT_TYPE>
| Enum Constant and Description |
|---|
SELECTED
Event type for a tab getting active.
|
UNSELECTED
Event type for a tab getting inactive.
|
| Modifier and Type | Method and Description |
|---|---|
static TabEvent.TAB_EVENT_TYPE |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TabEvent.TAB_EVENT_TYPE[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TabEvent.TAB_EVENT_TYPE SELECTED
public static final TabEvent.TAB_EVENT_TYPE UNSELECTED
public static TabEvent.TAB_EVENT_TYPE[] values()
for (TabEvent.TAB_EVENT_TYPE c : TabEvent.TAB_EVENT_TYPE.values()) System.out.println(c);
public static TabEvent.TAB_EVENT_TYPE valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant
with the specified namejava.lang.NullPointerException - if the argument is null