public enum Comparison extends Enum<Comparison>
Index.getRecords(Comparison, Comparable)
and IndexStore.getRecords(Comparable)
.Enum Constant and Description |
---|
GREATER
>
|
GREATER_OR_EQUAL
>=
|
LESS
<
|
LESS_OR_EQUAL
<=
|
NOT_EQUAL
!=
|
Modifier and Type | Method and Description |
---|---|
static Comparison |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Comparison[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Comparison NOT_EQUAL
public static final Comparison LESS
public static final Comparison GREATER
public static final Comparison LESS_OR_EQUAL
public static final Comparison GREATER_OR_EQUAL
public static Comparison[] values()
for (Comparison c : Comparison.values()) System.out.println(c);
public static Comparison 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 © 2019 Hazelcast, Inc.. All Rights Reserved.