public static enum DialogConstant.WindowType extends Enum<DialogConstant.WindowType>
| Enum Constant and Description |
|---|
APPLICATION_WINDOW
The application window
|
DIALOG_BOX
A dialog box, normally free floating from the MDI workspace
|
DOCUMENT_WINDOW
An ordinary document window
|
| Modifier and Type | Method and Description |
|---|---|
static DialogConstant.WindowType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DialogConstant.WindowType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DialogConstant.WindowType APPLICATION_WINDOW
public static final DialogConstant.WindowType DOCUMENT_WINDOW
public static final DialogConstant.WindowType DIALOG_BOX
public static DialogConstant.WindowType[] values()
for (DialogConstant.WindowType c : DialogConstant.WindowType.values()) System.out.println(c);
public static DialogConstant.WindowType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2006–2020 Esito AS. All rights reserved.