Uses of Interface
nbbrd.io.function.IOSupplier
Packages that use IOSupplier
-
Uses of IOSupplier in nbbrd.io
Methods in nbbrd.io with parameters of type IOSupplierModifier and TypeMethodDescriptiondefault voidFileFormatter.formatStream(T value, @NonNull IOSupplier<? extends OutputStream> target) 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) default TFileParser.parseStream(@NonNull IOSupplier<? extends InputStream> source) -
Uses of IOSupplier in nbbrd.io.function
Methods in nbbrd.io.function that return IOSupplierModifier and TypeMethodDescriptiondefault <V> @NonNull IOSupplier<V> IOSupplier.andThen(@NonNull IOFunction<? super T, ? extends V> after) Returns a composed supplier that first gets a value from this function, and then applies theafterfunction to the result.static <T> @NonNull IOSupplier<T> static <T> @NonNull IOSupplier<T> IOSupplier.of(@Nullable T t) Methods in nbbrd.io.function with parameters of type IOSupplierModifier and TypeMethodDescriptionstatic <T> @NonNull Supplier<T> IOSupplier.unchecked(@NonNull IOSupplier<T> o) -
Uses of IOSupplier in nbbrd.io.text
Methods in nbbrd.io.text with parameters of type IOSupplierModifier and TypeMethodDescriptiondefault voidTextFormatter.formatStream(T value, @NonNull IOSupplier<? extends OutputStream> target, @NonNull Charset encoding) default voidTextFormatter.formatWriter(T value, @NonNull IOSupplier<? extends Writer> target) default TTextParser.parseReader(@NonNull IOSupplier<? extends Reader> source) default TTextParser.parseStream(@NonNull IOSupplier<? extends InputStream> source, @NonNull Charset encoding)