Package com.gengoai.function
Interface SerializableIntPredicate
-
- All Superinterfaces:
IntPredicate
,Serializable
- 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 SerializableIntPredicate extends IntPredicate, Serializable
Version of IntPredicate that is serializable
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default SerializableIntPredicate
and(SerializableIntPredicate other)
default SerializableIntPredicate
and(IntPredicate other)
default SerializableIntPredicate
negate()
default SerializableIntPredicate
or(SerializableIntPredicate other)
default SerializableIntPredicate
or(IntPredicate other)
-
Methods inherited from interface java.util.function.IntPredicate
test
-
-
-
-
Method Detail
-
negate
default SerializableIntPredicate negate()
- Specified by:
negate
in interfaceIntPredicate
-
and
default SerializableIntPredicate and(IntPredicate other)
- Specified by:
and
in interfaceIntPredicate
-
or
default SerializableIntPredicate or(IntPredicate other)
- Specified by:
or
in interfaceIntPredicate
-
and
default SerializableIntPredicate and(SerializableIntPredicate other)
-
or
default SerializableIntPredicate or(SerializableIntPredicate other)
-
-