ParserInput

wjson.ParserInput$
See theParserInput companion trait

Attributes

Companion:
trait
Graph
Supertypes
class Object
trait Matchable
class Any
Self type

Members list

Concise view

Type members

Classlikes

class ByteArrayBasedParserInput(bytes: Array[Byte]) extends DefaultParserInput

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.

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
class Object
trait Matchable
class Any
class CharArrayBasedParserInput(chars: Array[Char]) extends DefaultParserInput

Attributes

Graph
Supertypes
class Object
trait Matchable
class Any
abstract class DefaultParserInput extends ParserInput

Attributes

Graph
Supertypes
class Object
trait Matchable
class Any
Known subtypes
class InterpolationParserInput(sc: StringContext, args: Seq[JsValue]) extends DefaultParserInput

Attributes

Graph
Supertypes
class Object
trait Matchable
class Any
case class Line(lineNr: Int, column: Int, text: String)

Attributes

Graph
Supertypes
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
class StringBasedParserInput(string: String) extends DefaultParserInput

Attributes

Graph
Supertypes
class Object
trait Matchable
class Any

Value members

Concrete methods

def apply(string: String): StringBasedParserInput
def apply(chars: Array[Char]): CharArrayBasedParserInput
def apply(bytes: Array[Byte]): ByteArrayBasedParserInput
def apply(sc: StringContext, args: Seq[JsValue]): ParserInput