public static enum Window.Type extends Enum<Window .Type >
Frame or
Dialog instance.
Some platforms may not fully support a certain window type. Depending on the level of support, some properties of the window type may be disobeyed.
Window.getType() ,
Window.setType(java.awt.Window.Type)
| Enum Constant and Description |
|---|
NORMAL
Represents a
normal window.
|
POPUP
Represents a
popup window.
|
UTILITY
Represents a
utility window.
|
| Modifier and Type | Method and Description |
|---|---|
static Window |
valueOf(String
Returns the enum constant of this type with the specified name.
|
static Window |
values()
Returns an array containing the constants of this enum type, in the order they are declared.
|
public static final Window.Type NORMAL
Window class or its descendants. Use this type for regular top-level windows.
public static final Window.Type UTILITY
Frame or a
Dialog object, and if it has its decorations enabled.
public static final Window.Type POPUP
Frame or
Dialog class, and have decorations enabled.
public static Window.Type [] values()
for (Window.Type c : Window.Type.values()) System.out.println(c);
public static Window.Type valueOf(String name)
name - the name of the enum constant to be returned.
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null