public static enum WindowManager.OpenMode extends java.lang.Enum<WindowManager.OpenMode>
| Enum Constant and Description |
|---|
DIALOG
Open a screen as modal dialog.
|
NEW_TAB
Open a screen in new tab of the main window.
|
NEW_WINDOW
In Desktop Client open a screen in new main window, in Web Client the same as new
NEW_TAB |
THIS_TAB
Open a screen on top of the current tab screens stack.
|
| Modifier and Type | Method and Description |
|---|---|
static WindowManager.OpenMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static WindowManager.OpenMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WindowManager.OpenMode NEW_TAB
AppWindow.Mode.SINGLE the new screen replaces current screen.public static final WindowManager.OpenMode THIS_TAB
public static final WindowManager.OpenMode DIALOG
public static final WindowManager.OpenMode NEW_WINDOW
NEW_TABpublic static WindowManager.OpenMode[] values()
for (WindowManager.OpenMode c : WindowManager.OpenMode.values()) System.out.println(c);
public static WindowManager.OpenMode 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