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