Package net.minecraftforge.common.util
Interface TriPredicate<T,U,V>
-
- 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 TriPredicate<T,U,V>
A predicate that takes three arguments and returns a boolean.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default TriPredicate<T,U,V>
and(TriPredicate<? super T,? super U,? super V> other)
default TriPredicate<T,U,V>
negate()
default TriPredicate<T,U,V>
or(TriPredicate<? super T,? super U,? super V> other)
boolean
test(T t, U u, V v)
-
-
-
Method Detail
-
and
default TriPredicate<T,U,V> and(TriPredicate<? super T,? super U,? super V> other)
-
negate
default TriPredicate<T,U,V> negate()
-
or
default TriPredicate<T,U,V> or(TriPredicate<? super T,? super U,? super V> other)
-
-