Uses of Interface
nbbrd.io.function.IOPredicate
-
Packages that use IOPredicate Package Description nbbrd.io nbbrd.io.function nbbrd.io.zip -
-
Uses of IOPredicate in nbbrd.io
Methods in nbbrd.io with parameters of type IOPredicate Modifier and Type Method Description static <E> @NonNull IOIterator<E>IOIterator. generateWhile(@NonNull IOSupplier<E> supplier, @NonNull IOPredicate<? super E> predicate)static <E> @NonNull IOIterator<E>IOIterator. iterate(@NonNull IOSupplier<E> seed, @NonNull IOPredicate<? super E> hasNext, @NonNull IOUnaryOperator<E> next) -
Uses of IOPredicate in nbbrd.io.function
Methods in nbbrd.io.function that return IOPredicate Modifier and Type Method Description default @NonNull IOPredicate<T>IOPredicate. and(@NonNull IOPredicate<? super T> other)Returns a composed predicate that represents a short-circuiting logical AND of this predicate and another.static <T> @NonNull IOPredicate<T>IOPredicate. checked(@NonNull Predicate<T> predicate)static <T> @NonNull IOPredicate<T>IOPredicate. isEqual(Object targetRef)Returns a predicate that tests if two arguments are equal according toObjects.equals(Object, Object).default @NonNull IOPredicate<T>IOPredicate. negate()Returns a predicate that represents the logical negation of this predicate.static <T> @NonNull IOPredicate<T>IOPredicate. of(boolean r)default @NonNull IOPredicate<T>IOPredicate. or(@NonNull IOPredicate<? super T> other)Returns a composed predicate that represents a short-circuiting logical OR of this predicate and another.Methods in nbbrd.io.function with parameters of type IOPredicate Modifier and Type Method Description default @NonNull IOPredicate<T>IOPredicate. and(@NonNull IOPredicate<? super T> other)Returns a composed predicate that represents a short-circuiting logical AND of this predicate and another.default @NonNull IOPredicate<T>IOPredicate. or(@NonNull IOPredicate<? super T> other)Returns a composed predicate that represents a short-circuiting logical OR of this predicate and another.static <T> @NonNull Predicate<T>IOPredicate. unchecked(@NonNull IOPredicate<T> o) -
Uses of IOPredicate in nbbrd.io.zip
Methods in nbbrd.io.zip with parameters of type IOPredicate Modifier and Type Method Description @NonNull Resource.Loader<String>Zip. loaderCopyOf(@NonNull InputStream inputStream, @NonNull IOPredicate<? super ZipEntry> filter)Creates a new loader by copying the content of a zip file.
-