breeze.io.TextReader

InputStreamReader

class InputStreamReader extends ReaderReader

A TextReader that reads from an InputStream.

Linear Supertypes
ReaderReader, TextReader, AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. InputStreamReader
  2. ReaderReader
  3. TextReader
  4. AnyRef
  5. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new InputStreamReader(stream: InputStream)

Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. def ++(next: TextReader): TextReader

    Concatenates two TextReaders together.

    Concatenates two TextReaders together.

    Definition Classes
    TextReader
  5. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  6. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  7. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  8. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  9. def close(): Unit

    Closes the input.

    Closes the input.

    Definition Classes
    ReaderReaderTextReader
  10. var colNo: Int

    Definition Classes
    ReaderReader
  11. def columnNumber: Int

    Returns the current column number in the reader (1-based).

    Returns the current column number in the reader (1-based).

    Definition Classes
    ReaderReaderTextReader
  12. def die(msg: String): Nothing

    Throws a TextReaderException at the current line and column.

    Throws a TextReaderException at the current line and column.

    Definition Classes
    TextReader
  13. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  14. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  15. def expect(literal: String): Unit

    Expect the given literal, throwing an exception on mismatch.

    Expect the given literal, throwing an exception on mismatch.

    Definition Classes
    TextReader
  16. def expect(literal: Char): Unit

    Expect the given literal, throwing an exception on mismatch.

    Expect the given literal, throwing an exception on mismatch.

    Definition Classes
    TextReader
  17. def expectLower(literal: String): Unit

    Expect the given literal (after lowercasing).

    Expect the given literal (after lowercasing).

    Definition Classes
    TextReader
  18. def expectLower(literal: Char): Unit

    Expect the given literal (after lowercasing).

    Expect the given literal (after lowercasing).

    Definition Classes
    TextReader
  19. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  20. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  21. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  22. def isEmpty: Boolean

    Returns true if there are no more characters left to consume.

    Returns true if there are no more characters left to consume.

    Definition Classes
    TextReader
  23. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  24. var lineNo: Int

    Definition Classes
    ReaderReader
  25. def lineNumber: Int

    Returns the current line number in the reader (1-based).

    Returns the current line number in the reader (1-based).

    Definition Classes
    ReaderReaderTextReader
  26. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  27. var next: Int

    Definition Classes
    ReaderReader
  28. final def notify(): Unit

    Definition Classes
    AnyRef
  29. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  30. def peek(n: Int): Int

    Peeks at the character at offset n.

    Peeks at the character at offset n. With n == 0 is the same as peek(). This method might not be implemented for all n>0 in all TextReader implementations, in which case it will throw an IllegalArgumentException.

    Definition Classes
    ReaderReaderTextReader
  31. def peek(): Int

    Peeks at the next unicode code point without consuming it, or -1 if the end of input.

    Peeks at the next unicode code point without consuming it, or -1 if the end of input.

    Definition Classes
    ReaderReaderTextReader
  32. def read(): Int

    Returns the next unicode code point to be read, or -1 if the end of input.

    Returns the next unicode code point to be read, or -1 if the end of input.

    Definition Classes
    ReaderReaderTextReader
  33. def read(numChars: Int): String

    Reads up to numChars characters from the input, or fewer if at the end of input.

    Reads up to numChars characters from the input, or fewer if at the end of input.

    Definition Classes
    TextReader
  34. def readLine(): String

    Reads the next line from the input.

    Reads the next line from the input. Does not return the newline, which is left in the stream. Returns null if there are no more lines.

    Definition Classes
    TextReader
  35. def readNewline(): String

    Reads and returns a newline character at the current position.

    Reads and returns a newline character at the current position. Throws an exception if a newline does not follow.

    Definition Classes
    TextReader
  36. def readNumber(): String

    Read a sequence of character consisting of the digits '0' to '9'.

    Read a sequence of character consisting of the digits '0' to '9'. Returns null if there are no more characters.

    Definition Classes
    TextReader
  37. def readRemaining(): String

    Returns the rest of the characters in the input as a String.

    Returns the rest of the characters in the input as a String.

    Definition Classes
    TextReader
  38. def readWhile(fn: (Int) ⇒ Boolean): String

    Consumes the characters from input while available and while the predicate matches.

    Consumes the characters from input while available and while the predicate matches. Returns null if there are no more characters.

    Definition Classes
    TextReader
  39. val reader: BufferedReader

    Definition Classes
    ReaderReader
  40. def skipWhile(fn: (Int) ⇒ Boolean): Unit

    Skips characters while the given predicate is true.

    Skips characters while the given predicate is true.

    Definition Classes
    TextReader
  41. def skipWhitespace(): Unit

    Skips whitespace characters.

    Skips whitespace characters.

    Definition Classes
    TextReader
  42. val stream: InputStream

  43. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  44. def toString(): String

    Definition Classes
    AnyRef → Any
  45. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  46. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  47. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from ReaderReader

Inherited from TextReader

Inherited from AnyRef

Inherited from Any

Ungrouped