Interface IOSupplier<T>

    • Method Detail

      • asSupplier

        default java.util.function.Supplier<TasSupplier()
        Creates a Supplier for this instance that throws UncheckedIOException instead of IOException.
        Returns:
        an UncheckedIOException Supplier.
        Since:
        2.12.0
      • get

        T get()
        throws java.io.IOException
        Gets a result.
        Returns:
        a result.
        Throws:
        java.io.IOException - if an I/O error occurs.
      • getUnchecked

        default T getUnchecked()
                        throws java.io.UncheckedIOException
        Gets a result.
        Returns:
        a result.
        Throws:
        java.io.UncheckedIOException - if an I/O error occurs.
        Since:
        2.17.0