Package com.speedment.common.function
Interface ToBooleanFunction<T>
-
- Type Parameters:
T- argument type
- All Superinterfaces:
Predicate<T>
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface ToBooleanFunction<T> extends Predicate<T>
A function that takes an object and returns a primitiveboolean.Generated by com.speedment.sources.pattern.function.ToFunctionPattern
- Since:
- 1.0.2
- Author:
- Emil Forslund
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description booleanapplyAsBoolean(T value)Applies this function to the given argument.default booleantest(T value)
-