Package org.camunda.bpm.engine.impl.juel
Enum Parser.ExtensionPoint
- java.lang.Object
-
- java.lang.Enum<Parser.ExtensionPoint>
-
- org.camunda.bpm.engine.impl.juel.Parser.ExtensionPoint
-
- All Implemented Interfaces:
Serializable
,Comparable<Parser.ExtensionPoint>
- Enclosing class:
- Parser
public static enum Parser.ExtensionPoint extends Enum<Parser.ExtensionPoint>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Parser.ExtensionPoint
valueOf(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 are declared.
-
-
-
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 Parser.ExtensionPoint[] 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 (Parser.ExtensionPoint c : Parser.ExtensionPoint.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Parser.ExtensionPoint valueOf(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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-