public static enum DefaultScreenDockWindowFactory.Kind extends Enum<DefaultScreenDockWindowFactory.Kind>
Enum Constant and Description |
---|
DIALOG
Represents
JDialog |
FRAME
Represents
JFrame |
Modifier and Type | Method and Description |
---|---|
static DefaultScreenDockWindowFactory.Kind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DefaultScreenDockWindowFactory.Kind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DefaultScreenDockWindowFactory.Kind DIALOG
JDialog
public static final DefaultScreenDockWindowFactory.Kind FRAME
JFrame
public static DefaultScreenDockWindowFactory.Kind[] values()
for (DefaultScreenDockWindowFactory.Kind c : DefaultScreenDockWindowFactory.Kind.values()) System.out.println(c);
public static DefaultScreenDockWindowFactory.Kind 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 null