NullFacade

org.typelevel.jawn.Facade$.NullFacade$
object NullFacade extends NoIndexFacade[Unit]

NullFacade discards all JSON AST information.

This is the simplest possible facade. It could be useful for checking JSON for correctness (via parsing) without worrying about saving the data.

It will always return () on any successful parse, no matter the content.

Attributes

Source
Facade.scala
Graph
Supertypes
trait NoIndexFacade[Unit]
trait Facade[Unit]
class Object
trait Matchable
class Any
Self type
NullFacade.type

Members list

Value members

Concrete methods

def arrayContext(): FContext[Unit]

Attributes

Source
Facade.scala
def jfalse: Unit

Attributes

Source
Facade.scala
def jnull: Unit

Attributes

Source
Facade.scala
def jnum(s: CharSequence, decIndex: Int, expIndex: Int): Unit

Attributes

Source
Facade.scala
def jstring(s: CharSequence): Unit

Attributes

Source
Facade.scala
def jtrue: Unit

Attributes

Source
Facade.scala
def objectContext(): FContext[Unit]

Attributes

Source
Facade.scala
def singleContext(): FContext[Unit]

Attributes

Source
Facade.scala

Inherited methods

final def arrayContext(index: Int): FContext[J]

Attributes

Inherited from:
NoIndexFacade
Source
Facade.scala
final def jfalse(index: Int): J

Attributes

Inherited from:
NoIndexFacade
Source
Facade.scala
final def jnull(index: Int): J

Attributes

Inherited from:
NoIndexFacade
Source
Facade.scala
final def jnum(s: CharSequence, decIndex: Int, expIndex: Int, index: Int): J

Attributes

Inherited from:
NoIndexFacade
Source
Facade.scala
final override def jstring(s: CharSequence, start: Int, limit: Int): J

Attributes

Definition Classes
Inherited from:
NoIndexFacade
Source
Facade.scala
final def jstring(s: CharSequence, index: Int): J

Attributes

Inherited from:
NoIndexFacade
Source
Facade.scala
final def jtrue(index: Int): J

Attributes

Inherited from:
NoIndexFacade
Source
Facade.scala
final def objectContext(index: Int): FContext[J]

Attributes

Inherited from:
NoIndexFacade
Source
Facade.scala
final def singleContext(index: Int): FContext[J]

Attributes

Inherited from:
NoIndexFacade
Source
Facade.scala