Uses of Interface
nbbrd.io.function.IOPredicate
Packages that use IOPredicate
-
Uses of IOPredicate in nbbrd.io
Methods in nbbrd.io with parameters of type IOPredicateModifier and TypeMethodDescriptionstatic <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 IOPredicateModifier and TypeMethodDescriptiondefault @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> static <T> @NonNull IOPredicate<T> 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 IOPredicateModifier and TypeMethodDescriptiondefault @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 IOPredicateModifier and TypeMethodDescription@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.