sealed trait RetractReader extends Reader with OneCharReader
A Reader that can retract and replay the last char that it read.
This is essential when parsing contents that do not have a terminator character, e.g. numbers, whilst preserving the non-significant character for further processing.
Linear Supertypes
Known Subclasses
Ordering
- Alphabetic
- By Inheritance
Inherited
- RetractReader
- OneCharReader
- Reader
- Closeable
- AutoCloseable
- Readable
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Abstract Value Members
Concrete Value Members
- def mark(arg0: Int): Unit
- Definition Classes
- Reader
- Annotations
- @throws(classOf[java.io.IOException])
- def markSupported(): Boolean
- Definition Classes
- Reader
- def nextNonWhitespace(): Char
- Definition Classes
- OneCharReader
- def read(): Int
- Definition Classes
- OneCharReader → Reader
- def read(cbuf: Array[Char], off: Int, len: Int): Int
- Definition Classes
- OneCharReader → Reader
- def read(arg0: Array[Char]): Int
- Definition Classes
- Reader
- Annotations
- @throws(classOf[java.io.IOException])
- def read(arg0: CharBuffer): Int
- Definition Classes
- Reader → Readable
- Annotations
- @throws(classOf[java.io.IOException])
- def ready(): Boolean
- Definition Classes
- Reader
- Annotations
- @throws(classOf[java.io.IOException])
- def reset(): Unit
- Definition Classes
- Reader
- Annotations
- @throws(classOf[java.io.IOException])
- def skip(arg0: Long): Long
- Definition Classes
- Reader
- Annotations
- @throws(classOf[java.io.IOException])