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 | Static Method and Description |
|---|---|
static Window.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Window.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Window class or
its descendants. Use this type for regular top-level windows.Frame or a Dialog object, and if it has its decorations enabled.Frame or
Dialog class, and have decorations enabled.for (Window.Type c : Window.Type.values()) System.out.println(c);
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