@Deprecated public static enum Query.Compare extends Enum<Query.Compare> implements Predicate
| Enum Constant and Description |
|---|
EQUAL
Deprecated.
|
GREATER_THAN
Deprecated.
|
GREATER_THAN_EQUAL
Deprecated.
|
LESS_THAN
Deprecated.
|
LESS_THAN_EQUAL
Deprecated.
|
NOT_EQUAL
Deprecated.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
evaluate(Object first,
Object second)
Deprecated.
If the underlying graph does not support the push-down predicate, then an in-memory evaluation can be done.
|
Query.Compare |
opposite()
Deprecated.
|
static Query.Compare |
valueOf(String name)
Deprecated.
Returns the enum constant of this type with the specified name.
|
static Query.Compare[] |
values()
Deprecated.
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Query.Compare EQUAL
public static final Query.Compare NOT_EQUAL
public static final Query.Compare GREATER_THAN
public static final Query.Compare GREATER_THAN_EQUAL
public static final Query.Compare LESS_THAN
public static final Query.Compare LESS_THAN_EQUAL
public static Query.Compare[] values()
for (Query.Compare c : Query.Compare.values()) System.out.println(c);
public static Query.Compare 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 Query.Compare opposite()
Copyright © 2010-2014. All Rights Reserved.