public static enum WWidget.WidgetState extends java.lang.Enum<WWidget.WidgetState>
| Enum Constant and Description |
|---|
CREATED
widget is fully created
|
DISPOSED
widget is fully disposed
|
IN_SETUP
widget is currently in setup phase
|
IN_TEAR_DOWN
widget is in tear down phase
|
| Modifier and Type | Method and Description |
|---|---|
static WWidget.WidgetState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static WWidget.WidgetState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WWidget.WidgetState IN_SETUP
public static final WWidget.WidgetState CREATED
public static final WWidget.WidgetState IN_TEAR_DOWN
public static final WWidget.WidgetState DISPOSED
public static WWidget.WidgetState[] values()
for (WWidget.WidgetState c : WWidget.WidgetState.values()) System.out.println(c);
public static WWidget.WidgetState 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