public static enum Window.ContentSwitchMode extends java.lang.Enum<Window.ContentSwitchMode>
Enum Constant and Description |
---|
DEFAULT
Tab switching is determined by the managed main TabSheet mode (hide or unload content of a tab).
|
HIDE
Tab content should be hidden not considering the TabSheet mode.
|
UNLOAD
Tab content should be unloaded not considering the TabSheet mode.
|
Modifier and Type | Method and Description |
---|---|
static Window.ContentSwitchMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Window.ContentSwitchMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Window.ContentSwitchMode DEFAULT
public static final Window.ContentSwitchMode HIDE
public static final Window.ContentSwitchMode UNLOAD
public static Window.ContentSwitchMode[] values()
for (Window.ContentSwitchMode c : Window.ContentSwitchMode.values()) System.out.println(c);
public static Window.ContentSwitchMode 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