de.odysseus.el.tree.impl
Enum Parser.ExtensionPoint

java.lang.Object
  extended by java.lang.Enum<Parser.ExtensionPoint>
      extended by 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>


Enum Constant Summary
ADD
           
AND
           
CMP
           
EQ
           
LITERAL
           
MUL
           
OR
           
UNARY
           
 
Method Summary
static Parser.ExtensionPoint valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Parser.ExtensionPoint[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
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
 

Enum Constant Detail

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
Method Detail

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

Copyright © 2006-2009 Odysseus Software GmbH.