private static enum JSTLVariableStack.Scope extends java.lang.Enum<JSTLVariableStack.Scope>
Enum Constant and Description |
---|
APPLICATION |
COOKIE |
HEADER |
INITPARAM |
PAGE |
PARAM |
REQUEST |
SESSION |
Modifier and Type | Method and Description |
---|---|
static JSTLVariableStack.Scope |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static JSTLVariableStack.Scope[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JSTLVariableStack.Scope PARAM
public static final JSTLVariableStack.Scope HEADER
public static final JSTLVariableStack.Scope COOKIE
public static final JSTLVariableStack.Scope INITPARAM
public static final JSTLVariableStack.Scope PAGE
public static final JSTLVariableStack.Scope REQUEST
public static final JSTLVariableStack.Scope SESSION
public static final JSTLVariableStack.Scope APPLICATION
public static JSTLVariableStack.Scope[] values()
for (JSTLVariableStack.Scope c : JSTLVariableStack.Scope.values()) System.out.println(c);
public static JSTLVariableStack.Scope 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