public enum ScriptLevel extends Enum<ScriptLevel>
| Modifier and Type | Method and Description |
|---|---|
static ScriptLevel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ScriptLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ScriptLevel NONE
public static final ScriptLevel SCRIPT
public static ScriptLevel[] values()
for (ScriptLevel c : ScriptLevel.values()) System.out.println(c);
public static ScriptLevel 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 nullCopyright © 2006–2016 Volker Bergmann. All rights reserved.