public class IsNotEqualTo<T> extends java.lang.Object implements BinaryPredicate<T>
| Constructor and Description |
|---|
IsNotEqualTo() |
| Modifier and Type | Method and Description |
|---|---|
static <T> IsNotEqualTo<T> |
isNotEqualTo() |
java.lang.Boolean |
perform(T left,
T right)
Has to be implemented to perform the actual operation.
|
boolean |
test(T left,
T right)
Evaluates the predicate (condition) on the given arguments.
|
public java.lang.Boolean perform(T left, T right)
BinaryFunctionperform in interface BinaryFunction<T,java.lang.Boolean>perform in interface BinaryPredicate<T>left - the left operand to be used in the operationright - the right operand to be used in the operationpublic boolean test(T left, T right)
BinaryPredicatetest in interface BinaryPredicate<T>left - the left operator of the conditionright - the right operator of the conditiontrue if the predicate is fulfilled, false otherwise.public static final <T> IsNotEqualTo<T> isNotEqualTo()