Package org.apache.jasper.compiler
Enum TagFileProcessor.TagFileDirectiveVisitor.Name
- java.lang.Object
-
- java.lang.Enum<TagFileProcessor.TagFileDirectiveVisitor.Name>
-
- org.apache.jasper.compiler.TagFileProcessor.TagFileDirectiveVisitor.Name
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<TagFileProcessor.TagFileDirectiveVisitor.Name>
- Enclosing class:
- TagFileProcessor.TagFileDirectiveVisitor
private static enum TagFileProcessor.TagFileDirectiveVisitor.Name extends java.lang.Enum<TagFileProcessor.TagFileDirectiveVisitor.Name>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ATTR_NAME
TAG_DYNAMIC
VAR_ALIAS
VAR_NAME_FROM
VAR_NAME_GIVEN
-
Constructor Summary
Constructors Modifier Constructor Description private
Name(java.lang.String attribute, java.lang.String directive)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description (package private) java.lang.String
getAttribute()
(package private) java.lang.String
getDirective()
static TagFileProcessor.TagFileDirectiveVisitor.Name
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static TagFileProcessor.TagFileDirectiveVisitor.Name[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ATTR_NAME
public static final TagFileProcessor.TagFileDirectiveVisitor.Name ATTR_NAME
-
VAR_NAME_GIVEN
public static final TagFileProcessor.TagFileDirectiveVisitor.Name VAR_NAME_GIVEN
-
VAR_NAME_FROM
public static final TagFileProcessor.TagFileDirectiveVisitor.Name VAR_NAME_FROM
-
VAR_ALIAS
public static final TagFileProcessor.TagFileDirectiveVisitor.Name VAR_ALIAS
-
TAG_DYNAMIC
public static final TagFileProcessor.TagFileDirectiveVisitor.Name TAG_DYNAMIC
-
-
Method Detail
-
values
public static TagFileProcessor.TagFileDirectiveVisitor.Name[] 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 (TagFileProcessor.TagFileDirectiveVisitor.Name c : TagFileProcessor.TagFileDirectiveVisitor.Name.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TagFileProcessor.TagFileDirectiveVisitor.Name 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
-
getAttribute
java.lang.String getAttribute()
-
getDirective
java.lang.String getDirective()
-
-