public enum Compare extends Enum<Compare> implements BiPredicate<Object,Object>
Compare is a BiPredicate that determines whether the first argument is ==, !=,
>, >=, <, <= to the second argument.| Enum Constant and Description |
|---|
eq
Evaluates if the first object is equal to the second per Gremlin Comparison semantics.
|
gt
Evaluates if the first object is greater than the second per Gremlin Comparison semantics.
|
gte
Evaluates if the first object is greater-equal to the second per Gremlin Comparison semantics.
|
lt
Evaluates if the first object is less than the second per Gremlin Comparison semantics.
|
lte
Evaluates if the first object is less-equal to the second per Gremlin Comparison semantics.
|
neq
Evaluates if the first object is not equal to the second per Gremlin Comparison semantics.
|
| Modifier and Type | Method and Description |
|---|---|
abstract Compare |
negate()
Produce the opposite representation of the current
Compare enum. |
static Compare |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Compare[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOfand, or, testpublic static final Compare eq
public static final Compare neq
public static final Compare gt
public static final Compare gte
public static final Compare lt
public static final Compare lte
public static Compare[] values()
for (Compare c : Compare.values()) System.out.println(c);
public static 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 abstract Compare negate()
Compare enum.negate in interface BiPredicate<Object,Object>Copyright © 2013–2022 Apache Software Foundation. All rights reserved.