public enum PolicyExpressionType extends Enum<PolicyExpressionType>
| Enum Constant and Description |
|---|
LITERAL
A literal expression.
|
OPERATION
Operations are a combination of a
PolicyOperator and one or more parameters. |
REFERENCE
References are objects whose values are evaluated at runtime similar to variables.
|
| Modifier and Type | Method and Description |
|---|---|
static PolicyExpressionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PolicyExpressionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PolicyExpressionType LITERAL
PolicyValue objects.public static final PolicyExpressionType REFERENCE
public static final PolicyExpressionType OPERATION
PolicyOperator and one or more parameters. Operator parameters are themselves expressions
allowing parameters to be either literals, references, or the result of another operation.public static PolicyExpressionType[] values()
for (PolicyExpressionType c : PolicyExpressionType.values()) System.out.println(c);
public static PolicyExpressionType 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 © 2010-2016 The Direct Project. All Rights Reserved.