public static enum AboutDialog.ShowPage extends java.lang.Enum<AboutDialog.ShowPage>
Enum Constant and Description |
---|
ABOUT |
AUTHORS |
CHANGELOG |
HELP |
LICENSE |
NEWS |
Modifier and Type | Method and Description |
---|---|
static AboutDialog.ShowPage |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AboutDialog.ShowPage[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AboutDialog.ShowPage ABOUT
public static final AboutDialog.ShowPage AUTHORS
public static final AboutDialog.ShowPage NEWS
public static final AboutDialog.ShowPage CHANGELOG
public static final AboutDialog.ShowPage LICENSE
public static final AboutDialog.ShowPage HELP
public static AboutDialog.ShowPage[] values()
for (AboutDialog.ShowPage c : AboutDialog.ShowPage.values()) System.out.println(c);
public static AboutDialog.ShowPage 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