public enum PolicyOperatorParamsType extends Enum<PolicyOperatorParamsType>
PolicyOperator type in terms of number of parameters.| Enum Constant and Description |
|---|
BINARY
Indicates that the operation is binary meaning it operates on two parameters.
|
UNARY
Indicates that the operation is unary meaning operates only on a single parameter.
|
| Modifier and Type | Method and Description |
|---|---|
static PolicyOperatorParamsType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PolicyOperatorParamsType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PolicyOperatorParamsType UNARY
public static final PolicyOperatorParamsType BINARY
public static PolicyOperatorParamsType[] values()
for (PolicyOperatorParamsType c : PolicyOperatorParamsType.values()) System.out.println(c);
public static PolicyOperatorParamsType 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.