ByteArrayBasedParserInput

besom.json.ParserInput.ByteArrayBasedParserInput

ParserInput reading directly off a byte array which is assumed to contain the UTF-8 encoded representation of the JSON input, without requiring a separate decoding step.

Attributes

Graph
Supertypes
trait ParserInput
class Object
trait Matchable
class Any
Show all

Members list

Value members

Concrete methods

def length: Int

Inherited methods

def cursor: Int

Attributes

Inherited from:
DefaultParserInput

Attributes

Inherited from:
DefaultParserInput
def nextChar(): Char

Advance the cursor and get the next char. Since the char is required to be a 7-Bit ASCII char no decoding is required.

Advance the cursor and get the next char. Since the char is required to be a 7-Bit ASCII char no decoding is required.

Attributes

Inherited from:
IndexedBytesParserInput

Advance the cursor and get the next char, which could potentially be outside of the 7-Bit ASCII range. Therefore decoding might be required.

Advance the cursor and get the next char, which could potentially be outside of the 7-Bit ASCII range. Therefore decoding might be required.

Attributes

Inherited from:
IndexedBytesParserInput

Inherited fields

protected var _cursor: Int

Attributes

Inherited from:
DefaultParserInput