public enum ExpressionType extends Enum<ExpressionType>
Enum Constant and Description |
---|
CONTEXT |
DECISION_TABLE |
FUNCTION |
FUNCTION_JAVA |
FUNCTION_PMML |
INVOCATION |
LITERAL_EXPRESSION |
RELATION |
UNDEFINED |
Modifier and Type | Method and Description |
---|---|
static ExpressionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExpressionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExpressionType UNDEFINED
public static final ExpressionType LITERAL_EXPRESSION
public static final ExpressionType CONTEXT
public static final ExpressionType DECISION_TABLE
public static final ExpressionType RELATION
public static final ExpressionType FUNCTION
public static final ExpressionType FUNCTION_JAVA
public static final ExpressionType FUNCTION_PMML
public static final ExpressionType INVOCATION
public static ExpressionType[] values()
for (ExpressionType c : ExpressionType.values()) System.out.println(c);
public static ExpressionType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2001–2020 JBoss by Red Hat. All rights reserved.