Conditional Filter
public final class ConditionalFilter<TInput extends Object, TResult extends Object> implements IFilter<TInput, TResult>, Iterable<IFilter<TInput, TResult>>(source)
A filter, which forwards evaluation to the given filter, if the check function returns true
. Otherwise, the result will be falseResult.
Parameters
TInput
The type the given filter accepts
TResult
The type filter returns
check
The function to decide if the evaluation should be forwarded to filter or return falseResult
false Result
The result when the input is false
filter
The filter to evaluate