public static enum ApplicationLauncher.WindowMode extends java.lang.Enum<ApplicationLauncher.WindowMode>
Enum Constant and Description |
---|
DIALOG
Shows the wizard in a modal dialog.
|
FRAME
Shows the wizard in a frame.
|
Modifier and Type | Method and Description |
---|---|
static ApplicationLauncher.WindowMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ApplicationLauncher.WindowMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ApplicationLauncher.WindowMode DIALOG
public static final ApplicationLauncher.WindowMode FRAME
public static ApplicationLauncher.WindowMode[] values()
for (ApplicationLauncher.WindowMode c : ApplicationLauncher.WindowMode.values()) System.out.println(c);
public static ApplicationLauncher.WindowMode 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