Interface VolumePredicate<V extends Volume,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 VolumePredicate<V extends Volume,T>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default VolumePredicate<V,T>
and(VolumePredicate<V,T> other)
default VolumePredicate<V,T>
negate()
default VolumePredicate<V,T>
or(VolumePredicate<V,T> other)
boolean
test(V volume, java.util.function.Supplier<T> element, double x, double y, double z)
default boolean
test(V volume, java.util.function.Supplier<T> element, int x, int y, int z)
-
-
-
Method Detail
-
and
default VolumePredicate<V,T> and(VolumePredicate<V,T> other)
-
negate
default VolumePredicate<V,T> negate()
-
or
default VolumePredicate<V,T> or(VolumePredicate<V,T> other)
-
-