public enum ComparisonType extends Enum<ComparisonType>
| Enum Constant and Description | 
|---|
| GREATERGreater | 
| GREATER_EQUALGrater Equal | 
| LESSERLesser | 
| LESSER_EQUALLesser Equal | 
| NOT_EQUALNot equal | 
| Modifier and Type | Method and Description | 
|---|---|
| static ComparisonType | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static ComparisonType[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final ComparisonType NOT_EQUAL
public static final ComparisonType LESSER
public static final ComparisonType GREATER
public static final ComparisonType LESSER_EQUAL
public static final ComparisonType GREATER_EQUAL
public static ComparisonType[] values()
for (ComparisonType c : ComparisonType.values()) System.out.println(c);
public static ComparisonType 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 © 2016 Hazelcast, Inc.. All Rights Reserved.