Class

com.github.scaruby

SReader

Related Doc: package scaruby

Permalink

abstract class SReader extends SClosableResource[SReader]

An abstract character stream. After using this object, close() method should be called.

Source
SReader.scala
Linear Supertypes
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. SReader
  2. SClosableResource
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new SReader()

    Permalink

Abstract Value Members

  1. abstract def close(): Unit

    Permalink

    Closes this reader.

    Closes this reader. After closing it, any method must not be called.

  2. abstract def read(): Int

    Permalink

    Reads one Char from this reader.

    Reads one Char from this reader. If the reader is at the end of file, return -1.

  3. abstract def readInto(buffer: Array[Char])(implicit offset: Int = 0, length: Int = buffer.length): Int

    Permalink

    Read from this reader and fill into buffer.

    Read from this reader and fill into buffer.

    buffer

    an Array of Char

    offset

    offset of buffer used to determine the beginning of buffer to be read

    length

    length of bufferused to determine how many characters should be read

    returns

    length of characters actually read

  4. abstract def readLine(): String

    Permalink

    Reads a line from this reader.

  5. abstract def self: SReader

    Permalink
    Definition Classes
    SClosableResource

Concrete Value Members

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

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  6. final def eq(arg0: AnyRef): Boolean

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

    Permalink
    Definition Classes
    AnyRef → Any
  8. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  9. def foreach[B](block: (SReader) ⇒ B): B

    Permalink
    Definition Classes
    SClosableResource
  10. final def getClass(): Class[_]

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

    Permalink
    Definition Classes
    AnyRef → Any
  12. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  13. def linesIterator(): Iterator[String]

    Permalink

    Returns Iterator, which one element corresponds one line.

  14. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  15. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  16. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  17. def readAll(): String

    Permalink

    Reads all texts from this reader.

  18. def readLines(): Seq[String]

    Permalink

    Reads all lines from this reader.

    Reads all lines from this reader.

    returns

    a sequence of String consisting of lines

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

    Permalink
    Definition Classes
    AnyRef
  20. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  21. def use[B](block: (SReader) ⇒ B): B

    Permalink
    Definition Classes
    SClosableResource
  22. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from SClosableResource[SReader]

Inherited from AnyRef

Inherited from Any

Ungrouped