public static enum ExpressionParserFactory.ParserStyle extends java.lang.Enum<ExpressionParserFactory.ParserStyle>
Enum Constant and Description |
---|
JAVA
The Java syntax parser, using ony Java language syntax and high speed
bytecode evaluation.
|
LEGACY
The pure legacy parser, using only JEP style syntax and evaluation.
|
LEGACY_EMULATED
The emulated legacy parser, using JEP syntax translated into Java
syntax with high speed Java bytecode evaluation.
|
Modifier and Type | Method and Description |
---|---|
static ExpressionParserFactory.ParserStyle |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ExpressionParserFactory.ParserStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExpressionParserFactory.ParserStyle LEGACY
public static final ExpressionParserFactory.ParserStyle LEGACY_EMULATED
public static final ExpressionParserFactory.ParserStyle JAVA
public static ExpressionParserFactory.ParserStyle[] values()
for (ExpressionParserFactory.ParserStyle c : ExpressionParserFactory.ParserStyle.values()) System.out.println(c);
public static ExpressionParserFactory.ParserStyle valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null