Uses of Interface
java.lang.Readable

Packages that useReadable
Package
Description
java.io
Provides for system input and output through data streams,serialization and the file system.
java.nio
Defines buffers, which are containers for data, and provides anoverview of the other NIO packages.
java.util
Contains the collections framework, some internationalization support classes,a service loader, properties, random number generation, string parsingand scanning classes, base64 encoding and decoding, a bit array, andseveral miscellaneous utility classes.
  • Uses ofReadable injava.io

    Classes injava.io that implementReadable
    Modifier and Type
    Class
    Description
    class 
    Reads text from a character-input stream, buffering characters so as toprovide for the efficient reading of characters, arrays, and lines.
    class 
    This class implements a character buffer that can be used as acharacter-input stream.
    class 
    Reads text from character files using a default buffer size.
    class 
    Abstract class for reading filtered character streams.
    class 
    An InputStreamReader is a bridge from byte streams to character streams: Itreads bytes and decodes them into characters using a specifiedcharset.
    class 
    A buffered character-input stream that keeps track of line numbers.
    class 
    Piped character-input streams.
    class 
    A character-stream reader that allows characters to be pushed back into thestream.
    class 
    Abstract class for reading character streams.
    class 
    A character stream whose source is a string.
  • Uses ofReadable injava.nio

    Classes injava.nio that implementReadable
    Modifier and Type
    Class
    Description
    class 
    A char buffer.
  • Uses ofReadable injava.util

    Constructors injava.util with parameters of typeReadable
    Modifier
    Constructor
    Description
     
    Scanner(Readable source)
    Constructs a newScanner that produces values scannedfrom the specified source.