Interface IHasInputStreamAndReader

    • Method Detail

      • getReader

        @Nullable
        default Reader getReader​(@Nonnull
                                 Charset aCharset)
        Get a Reader based on this input stream provider using the given charset.
        Parameters:
        aCharset - The charset to use. May not be null.
        Returns:
        null if no input stream could be retrieved.
      • getBufferedReader

        @Nullable
        default Reader getBufferedReader​(@Nonnull
                                         Charset aCharset)
        Get a buffered Reader based on this input stream provider using the given charset.
        Parameters:
        aCharset - The charset to use. May not be null.
        Returns:
        null if no input stream could be retrieved.
        Since:
        9.1.8