public static enum AppWorkArea.Mode extends java.lang.Enum<AppWorkArea.Mode>
| Enum Constant and Description |
|---|
SINGLE
In SINGLE mode each new screen opened with
OpenMode.NEW_TAB
opening type will replace the current screen. |
TABBED
If the main window is in TABBED mode, it creates the Tabsheet inside
and opens screens with
OpenMode.NEW_TAB as tabs. |
| Modifier and Type | Method and Description |
|---|---|
static AppWorkArea.Mode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AppWorkArea.Mode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AppWorkArea.Mode TABBED
OpenMode.NEW_TAB as tabs.public static final AppWorkArea.Mode SINGLE
OpenMode.NEW_TAB
opening type will replace the current screen.public static AppWorkArea.Mode[] values()
for (AppWorkArea.Mode c : AppWorkArea.Mode.values()) System.out.println(c);
public static AppWorkArea.Mode 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