public enum ComparisonOperator extends Enum<ComparisonOperator>
| Enum Constant and Description |
|---|
EQUALS |
GREATER_THAN |
LESS_THAN |
LIKE |
MATCHES |
| Modifier and Type | Method and Description |
|---|---|
PropertyValueTransformer |
getPropertyValueTransformer() |
String |
getValue() |
static ComparisonOperator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ComparisonOperator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ComparisonOperator EQUALS
public static final ComparisonOperator MATCHES
public static final ComparisonOperator LIKE
public static final ComparisonOperator GREATER_THAN
public static final ComparisonOperator LESS_THAN
public static ComparisonOperator[] values()
for (ComparisonOperator c : ComparisonOperator.values()) System.out.println(c);
public static ComparisonOperator 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 nullpublic String getValue()
public PropertyValueTransformer getPropertyValueTransformer()
PropertyValueTransformer required for this ComparisonOperator to workCopyright © 2016 Neo Technology, Inc.. All rights reserved.