public enum ScopeLevel extends java.lang.Enum<ScopeLevel>
| Enum Constant and Description |
|---|
CURRENT
Operation should occur within the current scope.
|
GLOBAL
Operation should occur within the global scope.
|
NEXT
Operation should occur within the next scope that is opened.
|
NONE
No scoped operation should occur.
|
| Modifier and Type | Method and Description |
|---|---|
static ScopeLevel |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ScopeLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ScopeLevel NONE
public static final ScopeLevel GLOBAL
public static final ScopeLevel CURRENT
public static final ScopeLevel NEXT
public static ScopeLevel[] values()
for (ScopeLevel c : ScopeLevel.values()) System.out.println(c);
public static ScopeLevel 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