public static enum Main.LookAndFeel extends java.lang.Enum<Main.LookAndFeel>
Modifier and Type | Method and Description |
---|---|
static Main.LookAndFeel |
fromString(java.lang.String str) |
static Main.LookAndFeel |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Main.LookAndFeel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Main.LookAndFeel DEFAULT
public static final Main.LookAndFeel METAL
public static final Main.LookAndFeel SYSTEM
public static Main.LookAndFeel[] values()
for (Main.LookAndFeel c : Main.LookAndFeel.values()) System.out.println(c);
public static Main.LookAndFeel 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 nullpublic static Main.LookAndFeel fromString(java.lang.String str)