long
-valued
argument. This is the long
-consuming primitive type specialization of
Predicate
.
This is a functional interface
whose functional method is test(long)
.
Predicate
Modifier and Type | Method and Description |
---|---|
public default LongPredicate | Returns: a composed predicate that represents the short-circuiting logical AND of this predicate and theother predicatea predicate that will be logically-ANDed with this
predicate other)Returns a composed predicate that represents a short-circuiting logical AND of this predicate and another. |
public default LongPredicate | Returns: a predicate that represents the logical negation of this predicateReturns a predicate that represents the logical negation of this predicate. |
public default LongPredicate | Returns: a composed predicate that represents the short-circuiting logical OR of this predicate and theother predicatea predicate that will be logically-ORed with this
predicate other)Returns a composed predicate that represents a short-circuiting logical OR of this predicate and another. |
public boolean | Returns: true if the input argument matches the predicate,
otherwise false the input argument value)Evaluates this predicate on the given argument. |
and | back to summary |
---|---|
public default LongPredicate and(LongPredicate other) Returns a composed predicate that represents a short-circuiting logical
AND of this predicate and another. When evaluating the composed
predicate, if this predicate is Any exceptions thrown during evaluation of either predicate are relayed
to the caller; if evaluation of this predicate throws an exception, the
|
negate | back to summary |
---|---|
public default LongPredicate negate() Returns a predicate that represents the logical negation of this predicate.
|
or | back to summary |
---|---|
public default LongPredicate or(LongPredicate other) Returns a composed predicate that represents a short-circuiting logical
OR of this predicate and another. When evaluating the composed
predicate, if this predicate is Any exceptions thrown during evaluation of either predicate are relayed
to the caller; if evaluation of this predicate throws an exception, the
|
test | back to summary |
---|---|
public boolean test(long value) Evaluates this predicate on the given argument.
|