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