public enum PresetType extends java.lang.Enum<PresetType>
| Enum Constant and Description |
|---|
settings
Area settings preset.
|
style
Area styling preset.
|
syntax
Syntax highlight preset.
|
theme
Area theme preset.
|
| Modifier and Type | Method and Description |
|---|---|
static PresetType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PresetType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PresetType settings
public static final PresetType style
public static final PresetType syntax
public static final PresetType theme
public static PresetType[] values()
for (PresetType c : PresetType.values()) System.out.println(c);
public static PresetType 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