Class NonBufferingAsciiInputStreamReader

java.lang.Object
java.io.Reader
nu.validator.io.NonBufferingAsciiInputStreamReader
All Implemented Interfaces:
java.io.Closeable, java.lang.AutoCloseable, java.lang.Readable

public class NonBufferingAsciiInputStreamReader
extends java.io.Reader
Version:
$Id$
Author:
hsivonen
  • Field Summary

    Fields inherited from class java.io.Reader

    lock
  • Constructor Summary

    Constructors 
    Constructor Description
    NonBufferingAsciiInputStreamReader​(java.io.InputStream stream)  
  • Method Summary

    Modifier and Type Method Description
    void close()  
    int read()  
    int read​(char[] buf, int off, int len)  

    Methods inherited from class java.io.Reader

    mark, markSupported, nullReader, read, read, ready, reset, skip, transferTo

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

  • Method Details

    • close

      public void close() throws java.io.IOException
      Specified by:
      close in interface java.lang.AutoCloseable
      Specified by:
      close in interface java.io.Closeable
      Specified by:
      close in class java.io.Reader
      Throws:
      java.io.IOException
    • read

      public int read() throws java.io.IOException
      Overrides:
      read in class java.io.Reader
      Throws:
      java.io.IOException
      See Also:
      Reader.read()
    • read

      public int read​(char[] buf, int off, int len) throws java.io.IOException
      Specified by:
      read in class java.io.Reader
      Throws:
      java.io.IOException
      See Also:
      Reader.read(char[], int, int)