saker.build Documentation TaskDoc JavaDoc Packages
public interface TriPredicate<T, U, V>
Functional interface similar to Predicate, but takes 3 arguments instead of 1.
TThe type of the first argument.
UThe type of the second argument.
VThe type of the third argument.
Methods
public boolean
test(T t, U u, V v)
Tests if the arguments should be accepted in the context of the caller operation.
public abstract boolean test(T t, U u, V v)
Tests if the arguments should be accepted in the context of the caller operation.
tThe first argument.
uThe second argument.
vThe third argument.
true to accept the arguments.