Enum JSTLVariableStack.Scope
- java.lang.Object
-
- java.lang.Enum<JSTLVariableStack.Scope>
-
- org.apache.taglibs.standard.tag.common.xml.JSTLVariableStack.Scope
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<JSTLVariableStack.Scope>
- Enclosing class:
- JSTLVariableStack
private static enum JSTLVariableStack.Scope extends java.lang.Enum<JSTLVariableStack.Scope>
-
-
Constructor Summary
Constructors Modifier Constructor Description private
Scope()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method 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.
-
-
-
Enum Constant Detail
-
PARAM
public static final JSTLVariableStack.Scope PARAM
-
HEADER
public static final JSTLVariableStack.Scope HEADER
-
COOKIE
public static final JSTLVariableStack.Scope COOKIE
-
INITPARAM
public static final JSTLVariableStack.Scope INITPARAM
-
PAGE
public static final JSTLVariableStack.Scope PAGE
-
REQUEST
public static final JSTLVariableStack.Scope REQUEST
-
SESSION
public static final JSTLVariableStack.Scope SESSION
-
APPLICATION
public static final JSTLVariableStack.Scope APPLICATION
-
-
Method Detail
-
values
public static JSTLVariableStack.Scope[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (JSTLVariableStack.Scope c : JSTLVariableStack.Scope.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static JSTLVariableStack.Scope valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-