de.odysseus.el.tree.impl
Enum Parser.ExtensionPoint
java.lang.Object
java.lang.Enum<Parser.ExtensionPoint>
de.odysseus.el.tree.impl.Parser.ExtensionPoint
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<Parser.ExtensionPoint>
- Enclosing class:
- Parser
public static enum Parser.ExtensionPoint
- extends java.lang.Enum<Parser.ExtensionPoint>
Methods inherited from class java.lang.Enum |
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
finalize, getClass, notify, notifyAll, wait, wait, wait |
OR
public static final Parser.ExtensionPoint OR
AND
public static final Parser.ExtensionPoint AND
EQ
public static final Parser.ExtensionPoint EQ
CMP
public static final Parser.ExtensionPoint CMP
ADD
public static final Parser.ExtensionPoint ADD
MUL
public static final Parser.ExtensionPoint MUL
UNARY
public static final Parser.ExtensionPoint UNARY
LITERAL
public static final Parser.ExtensionPoint LITERAL
values
public static final Parser.ExtensionPoint[] values()
- Returns an array containing the constants of this enum type, in
the order they're declared. This method may be used to iterate
over the constants as follows:
for(Parser.ExtensionPoint c : Parser.ExtensionPoint.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they're declared
valueOf
public static Parser.ExtensionPoint 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 name