@FunctionalInterface
public interface LongPredicate
extends java.util.function.LongPredicate
| Modifier and Type | Method and Description |
|---|---|
static LongPredicate |
alwaysFalse()
Creates a Always false function that may be useful if you don't need to process information or just want a default.
|
static LongPredicate |
alwaysTrue()
Creates a Always true function that may be useful if you don't need to process information or just want a default.
|
default LongPredicate |
and(java.util.function.LongPredicate other)
Deprecated.
|
default LongPredicate |
andType(LongPredicate other)
A Type specific and-function helper function that reduces boxing/unboxing
|
default LongPredicate |
negate() |
default LongPredicate |
or(java.util.function.LongPredicate other)
Deprecated.
|
default LongPredicate |
orType(LongPredicate other)
A Type specific or-function helper function that reduces boxing/unboxing
|
boolean |
test(long k)
Type Specific get function to reduce boxing/unboxing
|
boolean test(long k)
test in interface java.util.function.LongPredicatek - the value that should be processedstatic LongPredicate alwaysTrue()
static LongPredicate alwaysFalse()
default LongPredicate andType(LongPredicate other)
other - the other function that should be merged with.@Deprecated default LongPredicate and(java.util.function.LongPredicate other)
and in interface java.util.function.LongPredicatedefault LongPredicate negate()
negate in interface java.util.function.LongPredicatedefault LongPredicate orType(LongPredicate other)
other - the other function that should be merged with.@Deprecated default LongPredicate or(java.util.function.LongPredicate other)
or in interface java.util.function.LongPredicate