T - the type of elements maintained by this Collection@FunctionalInterface
public interface Object2BooleanFunction<T>
extends java.util.function.Predicate<T>
| Modifier and Type | Method and Description |
|---|---|
default Object2BooleanFunction<T> |
and(java.util.function.Predicate<? super T> other)
Deprecated.
|
default Object2BooleanFunction<T> |
andType(Object2BooleanFunction<T> other)
A Type specific and-function helper function that reduces boxing/unboxing
|
boolean |
getBoolean(T k)
Type Specific get function to reduce boxing/unboxing
|
default Object2BooleanFunction<T> |
negate() |
default Object2BooleanFunction<T> |
or(java.util.function.Predicate<? super T> other)
Deprecated.
|
default Object2BooleanFunction<T> |
orType(Object2BooleanFunction<T> other)
A Type specific or-function helper function that reduces boxing/unboxing
|
default boolean |
test(T k) |
boolean getBoolean(T k)
k - the value that should be processeddefault Object2BooleanFunction<T> andType(Object2BooleanFunction<T> other)
other - the other function that should be merged with.@Deprecated default Object2BooleanFunction<T> and(java.util.function.Predicate<? super T> other)
and in interface java.util.function.Predicate<T>default Object2BooleanFunction<T> negate()
negate in interface java.util.function.Predicate<T>default Object2BooleanFunction<T> orType(Object2BooleanFunction<T> other)
other - the other function that should be merged with.@Deprecated default Object2BooleanFunction<T> or(java.util.function.Predicate<? super T> other)
or in interface java.util.function.Predicate<T>