Uses of Interface
nbbrd.io.function.IOSupplier
-
Packages that use IOSupplier Package Description nbbrd.io nbbrd.io.function nbbrd.io.text -
-
Uses of IOSupplier in nbbrd.io
Methods in nbbrd.io with parameters of type IOSupplier Modifier and Type Method Description default voidFileFormatter. formatStream(@NonNull T value, 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 @NonNull TFileParser. parseStream(IOSupplier<? extends InputStream> source) -
Uses of IOSupplier in nbbrd.io.function
Methods in nbbrd.io.function that return IOSupplier Modifier and Type Method Description default <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>IOSupplier. checked(@NonNull Supplier<T> o)static <T> @NonNull IOSupplier<T>IOSupplier. of(@Nullable T t)Methods in nbbrd.io.function with parameters of type IOSupplier Modifier and Type Method Description static <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 IOSupplier Modifier and Type Method Description default voidTextFormatter. formatStream(@NonNull T value, IOSupplier<? extends OutputStream> target, @NonNull Charset encoding)default voidTextFormatter. formatWriter(@NonNull T value, IOSupplier<? extends Writer> target)default @NonNull TTextParser. parseReader(IOSupplier<? extends Reader> source)default @NonNull TTextParser. parseStream(IOSupplier<? extends InputStream> source, @NonNull Charset encoding)
-