SnakePickle
An object that transforms all snake_case keys into camelCase https://com-lihaoyi.github.io/upickle/#CustomConfiguration
Attributes
- Graph
-
- Supertypes
-
trait AttributeTaggedtrait Apitrait MsgReadWriterstrait JsReadWriterstrait LowPriReadWriterstrait MacroImplicitstrait WebJsontrait Writerstrait LowPriWriterstrait WritersVersionSpecifictrait Readerstrait ReadersVersionSpecifictrait CaseClassReadWriterstrait Annotatortrait MacrosCommontrait Generatedtrait TupleReadWriterstrait Typesclass Objecttrait Matchableclass AnyShow all
- Self type
-
SnakePickle.type
Members list
Type members
Inherited classlikes
Attributes
- Inherited from:
- CaseClassReadWriters
- Supertypes
-
trait SimpleReader[V]trait SimpleVisitor[Any, V]trait Reader[V]trait Visitor[Any, V]class Objecttrait Matchableclass AnyShow all
- Known subtypes
-
class CaseClassReadereader[T]class SingletonReader[T]
Attributes
- Inherited from:
- ReadersVersionSpecific
- Supertypes
-
class CaseClassReader[T]trait SimpleReader[T]trait SimpleVisitor[Any, T]trait Reader[T]trait Visitor[Any, T]class Objecttrait Matchableclass AnyShow all
Attributes
- Inherited from:
- CaseClassReadWriters
- Supertypes
-
trait ObjectWriter[V]trait Writer[V]trait Transformer[V]class Objecttrait Matchableclass AnyShow all
- Known subtypes
-
class SingletonWriter[T]
Attributes
- Inherited from:
- Readers
- Supertypes
-
trait SimpleReader[T]trait SimpleVisitor[Any, T]trait Reader[T]trait Visitor[Any, T]class Objecttrait Matchableclass AnyShow all
Attributes
- Inherited from:
- Types
- Supertypes
- Known subtypes
-
trait CaseClassWriter[V]class SingletonWriter[T]
Attributes
- Inherited from:
- Types
- Supertypes
-
class Objecttrait Matchableclass Any
Attributes
- Inherited from:
- MacroImplicits
- Supertypes
-
class Objecttrait Matchableclass Any
Represents the ability to read a value of type T.
Represents the ability to read a value of type T.
A thin wrapper around Visitor, but needs to be it's own class in order to make type inference automatically pick up it's implicit values.
Attributes
- Inherited from:
- Types
- Supertypes
-
trait Visitor[Any, T]class Objecttrait Matchableclass Any
- Known subtypes
-
trait ReadWriter[T]trait TaggedReadWriter[T]trait SimpleReader[T]class CaseClassReader[V]class CaseClassReadereader[T]class SingletonReader[T]trait NumericReader[T]trait SimpleStringReader[T]trait TaggedReader[T]class TupleNReader[V]Show all
Attributes
- Inherited from:
- ReadersVersionSpecific
- Supertypes
-
class Objecttrait Matchableclass Any
Attributes
- Inherited from:
- Readers
- Supertypes
-
trait SimpleVisitor[Any, C[T]]trait Visitor[Any, C[T]]class Objecttrait Matchableclass AnyShow all
A Reader that throws an error for all the visit methods which it does not define, letting you only define the handlers you care about.
A Reader that throws an error for all the visit methods which it does not define, letting you only define the handlers you care about.
Attributes
- Inherited from:
- Types
- Supertypes
-
trait SimpleVisitor[Any, T]trait Reader[T]trait Visitor[Any, T]class Objecttrait Matchableclass AnyShow all
- Known subtypes
-
class CaseClassReader[V]class CaseClassReadereader[T]class SingletonReader[T]trait NumericReader[T]trait SimpleStringReader[T]trait TaggedReadWriter[T]trait TaggedReader[T]class TupleNReader[V]Show all
Attributes
- Inherited from:
- Readers
- Supertypes
-
trait SimpleReader[T]trait SimpleVisitor[Any, T]trait Reader[T]trait Visitor[Any, T]class Objecttrait Matchableclass AnyShow all
Attributes
- Inherited from:
- CaseClassReadWriters
- Supertypes
-
class CaseClassReader[T]trait SimpleReader[T]trait SimpleVisitor[Any, T]trait Reader[T]trait Visitor[Any, T]class Objecttrait Matchableclass AnyShow all
Attributes
- Inherited from:
- CaseClassReadWriters
- Supertypes
-
trait CaseClassWriter[T]trait ObjectWriter[T]trait Writer[T]trait Transformer[T]class Objecttrait Matchableclass AnyShow all
Attributes
- Inherited from:
- Types
- Supertypes
-
class Objecttrait Matchableclass Any
Attributes
- Inherited from:
- Types
- Supertypes
-
trait TaggedWriter[T]trait TaggedReader[T]trait SimpleReader[T]trait SimpleVisitor[Any, T]trait ReadWriter[T]trait Writer[T]trait Transformer[T]trait Reader[T]trait Visitor[Any, T]class Objecttrait Matchableclass AnyShow all
Attributes
- Inherited from:
- Types
- Supertypes
-
class Objecttrait Matchableclass Any
Attributes
- Inherited from:
- Types
- Supertypes
-
trait SimpleReader[T]trait SimpleVisitor[Any, T]trait Reader[T]trait Visitor[Any, T]class Objecttrait Matchableclass AnyShow all
- Known subtypes
-
trait TaggedReadWriter[T]
Attributes
- Inherited from:
- Types
- Supertypes
-
class Objecttrait Matchableclass Any
Attributes
- Inherited from:
- Types
- Supertypes
- Known subtypes
-
trait TaggedReadWriter[T]
Attributes
- Inherited from:
- TupleReadWriters
- Supertypes
-
trait SimpleReader[V]trait SimpleVisitor[Any, V]trait Reader[V]trait Visitor[Any, V]class Objecttrait Matchableclass AnyShow all
Attributes
- Inherited from:
- TupleReadWriters
- Supertypes
Represents the ability to write a value of type T.
Represents the ability to write a value of type T.
Generally nothing more than a way of applying the T to a Visitor, along with some utility methods
Attributes
- Inherited from:
- Types
- Supertypes
-
trait Transformer[T]class Objecttrait Matchableclass Any
- Known subtypes
-
trait ObjectWriter[T]trait CaseClassWriter[V]class SingletonWriter[T]trait ReadWriter[T]trait TaggedReadWriter[T]trait SimpleMapKeyWriter[T]trait TaggedWriter[T]class TupleNWriter[V]Show all
Attributes
- Inherited from:
- WritersVersionSpecific
- Supertypes
-
class Objecttrait Matchableclass Any
Value members
Concrete methods
Attributes
- Definition Classes
-
MacrosCommon
Attributes
- Definition Classes
-
MacrosCommon
Attributes
- Definition Classes
-
MacrosCommon
Attributes
- Definition Classes
-
MacrosCommon
Inherited methods
Attributes
- Inherited from:
- Readers
Attributes
- Inherited from:
- Writers
Configure whether you want upickle to skip unknown keys during de-serialization of case class
es. Can be overriden for the entire serializer via override def
, and further overriden for individual case class
es via the annotation @upickle.implicits.allowUnknownKeys(b: Boolean)
Configure whether you want upickle to skip unknown keys during de-serialization of case class
es. Can be overriden for the entire serializer via override def
, and further overriden for individual case class
es via the annotation @upickle.implicits.allowUnknownKeys(b: Boolean)
Attributes
- Definition Classes
-
Api -> CaseClassReadWriters
- Inherited from:
- Api
Attributes
- Inherited from:
- AttributeTagged
Attributes
- Inherited from:
- AttributeTagged
Attributes
- Inherited from:
- Annotator
Attributes
- Inherited from:
- ReadersVersionSpecific
Attributes
- Inherited from:
- MacroImplicits
Attributes
- Inherited from:
- MacroImplicits
Attributes
- Inherited from:
- WritersVersionSpecific
Attributes
- Inherited from:
- WritersVersionSpecific
Reads the given JSON input into a Scala value
Reads the given JSON input into a Scala value
Attributes
- Inherited from:
- Api
Reads the given MessagePack input into a Scala value
Reads the given MessagePack input into a Scala value
Attributes
- Inherited from:
- Api
Attributes
- Inherited from:
- Api
Attributes
- Inherited from:
- MacrosCommon
Attributes
- Inherited from:
- Api
Write the given Scala value as a JSON string via a geny.Writable
Write the given Scala value as a JSON string via a geny.Writable
Attributes
- Inherited from:
- Api
Attributes
- Inherited from:
- Api
Write the given Scala value as a MessagePack binary via a geny.Writable
Write the given Scala value as a MessagePack binary via a geny.Writable
Attributes
- Inherited from:
- Api
Mark a ReadWriter[T]
as something that can be used as a key in a JSON dictionary, such that Map[T, V]
serializes to {"a": "b", "c": "d"}
rather than [["a", "b"], ["c", "d"]]
Mark a ReadWriter[T]
as something that can be used as a key in a JSON dictionary, such that Map[T, V]
serializes to {"a": "b", "c": "d"}
rather than [["a", "b"], ["c", "d"]]
Attributes
- Inherited from:
- Api
Mark a Writer[T]
as something that can be used as a key in a JSON dictionary, such that Map[T, V]
serializes to {"a": "b", "c": "d"}
rather than [["a", "b"], ["c", "d"]]
Mark a Writer[T]
as something that can be used as a key in a JSON dictionary, such that Map[T, V]
serializes to {"a": "b", "c": "d"}
rather than [["a", "b"], ["c", "d"]]
Attributes
- Inherited from:
- Api
Attributes
- Inherited from:
- AttributeTagged
Attributes
- Inherited from:
- Types
Attributes
- Inherited from:
- AttributeTagged
Attributes
- Definition Classes
-
AttributeTagged -> Types
- Inherited from:
- AttributeTagged
Attributes
- Inherited from:
- AttributeTagged
Attributes
- Inherited from:
- Api
Write the given Scala value as a JSON string
Write the given Scala value as a JSON string
Attributes
- Inherited from:
- Api
Attributes
- Inherited from:
- Api
Write the given Scala value as a MessagePack binary
Write the given Scala value as a MessagePack binary
Attributes
- Inherited from:
- Api
Attributes
- Inherited from:
- Api
Write the given Scala value as a MessagePack binary to the given OutputStream
Write the given Scala value as a MessagePack binary to the given OutputStream
Attributes
- Inherited from:
- Api
Attributes
- Inherited from:
- Api
Attributes
- Inherited from:
- Api
Write the given Scala value as a JSON struct
Write the given Scala value as a JSON struct
Attributes
- Inherited from:
- Api
Write the given Scala value as a MessagePack struct
Write the given Scala value as a MessagePack struct
Attributes
- Inherited from:
- Api
Attributes
- Inherited from:
- Api
Write the given Scala value as a JSON string to the given Writer
Write the given Scala value as a JSON string to the given Writer
Attributes
- Inherited from:
- Api
Attributes
- Inherited from:
- Api
Attributes
- Inherited from:
- Api
Attributes
- Inherited from:
- Api
Attributes
- Inherited from:
- Api
Inherited fields
Attributes
- Inherited from:
- WritersVersionSpecific
Givens
Inherited givens
Attributes
- Inherited from:
- ReadersVersionSpecific
Attributes
- Inherited from:
- WritersVersionSpecific
Implicits
Implicits
Attributes
- Definition Classes
-
Readers
This is required in order to parse null values into Scala's Option
This is required in order to parse null values into Scala's Option
Attributes
- Definition Classes
-
Writers
Inherited implicits
Attributes
- Inherited from:
- Readers
Attributes
- Inherited from:
- Writers
Attributes
- Inherited from:
- Readers
Attributes
- Inherited from:
- Writers
Attributes
- Inherited from:
- Readers
Attributes
- Inherited from:
- Writers
Attributes
- Inherited from:
- Readers
Attributes
- Inherited from:
- Writers
Attributes
- Inherited from:
- Readers
Attributes
- Inherited from:
- Writers
Attributes
- Inherited from:
- Readers
Attributes
- Inherited from:
- Writers
Attributes
- Inherited from:
- Readers
Attributes
- Inherited from:
- Writers
Attributes
- Inherited from:
- Readers
Attributes
- Inherited from:
- Writers
Attributes
- Inherited from:
- Readers
Attributes
- Inherited from:
- Writers
Attributes
- Inherited from:
- Readers
Attributes
- Inherited from:
- Writers
Attributes
- Inherited from:
- Readers
Attributes
- Inherited from:
- Writers
Attributes
- Inherited from:
- Readers
Attributes
- Inherited from:
- Writers
Attributes
- Inherited from:
- Readers
Attributes
- Inherited from:
- Writers
Attributes
- Inherited from:
- Readers
Attributes
- Inherited from:
- Writers
Attributes
- Inherited from:
- Readers
Attributes
- Inherited from:
- Writers
Attributes
- Inherited from:
- Readers
Attributes
- Inherited from:
- Writers
Attributes
- Inherited from:
- Readers
Attributes
- Inherited from:
- Writers
Attributes
- Inherited from:
- Readers
Attributes
- Inherited from:
- Writers
Attributes
- Inherited from:
- Readers
Attributes
- Inherited from:
- Writers
Attributes
- Inherited from:
- Readers
Attributes
- Inherited from:
- Writers
Attributes
- Inherited from:
- Readers
Attributes
- Inherited from:
- Writers
Attributes
- Inherited from:
- Readers
Attributes
- Inherited from:
- Writers
Attributes
- Inherited from:
- Readers
Attributes
- Inherited from:
- Readers
Attributes
- Inherited from:
- Readers
Attributes
- Inherited from:
- Readers
Attributes
- Inherited from:
- Readers
Attributes
- Inherited from:
- Readers
Attributes
- Inherited from:
- Writers
Attributes
- Inherited from:
- Writers
Attributes
- Inherited from:
- Writers
Attributes
- Inherited from:
- Writers
Attributes
- Inherited from:
- Writers
Attributes
- Inherited from:
- Writers
Attributes
- Inherited from:
- Writers
Attributes
- Inherited from:
- Readers
Attributes
- Inherited from:
- Writers
Attributes
- Inherited from:
- MacroImplicits
Attributes
- Inherited from:
- ReadersVersionSpecific
Attributes
- Inherited from:
- Readers
Attributes
- Inherited from:
- Writers
Attributes
- Inherited from:
- Readers
Attributes
- Inherited from:
- LowPriWriters
Attributes
- Inherited from:
- Readers
Attributes
- Inherited from:
- Writers
Attributes
- Inherited from:
- Readers
Attributes
- Inherited from:
- Writers
Attributes
- Inherited from:
- Readers
Attributes
- Inherited from:
- Readers
Attributes
- Inherited from:
- Writers
Attributes
- Inherited from:
- Readers
Attributes
- Inherited from:
- Writers
Attributes
- Inherited from:
- Generated
Attributes
- Inherited from:
- Generated
Attributes
- Inherited from:
- Generated
Attributes
- Inherited from:
- Generated
Attributes
- Inherited from:
- Generated
Attributes
- Inherited from:
- Generated
Attributes
- Inherited from:
- Generated
Attributes
- Inherited from:
- Generated
Attributes
- Inherited from:
- Generated
Attributes
- Inherited from:
- Generated
Attributes
- Inherited from:
- Generated
Attributes
- Inherited from:
- Generated
Attributes
- Inherited from:
- Generated
Attributes
- Inherited from:
- Generated
Attributes
- Inherited from:
- Generated
Attributes
- Inherited from:
- Generated
Attributes
- Inherited from:
- Generated
Attributes
- Inherited from:
- Generated
Attributes
- Inherited from:
- Generated
Attributes
- Inherited from:
- Generated
Attributes
- Inherited from:
- Generated
Attributes
- Inherited from:
- Generated
Attributes
- Inherited from:
- Generated
Attributes
- Inherited from:
- Generated
Attributes
- Inherited from:
- Generated
Attributes
- Inherited from:
- Generated
Attributes
- Inherited from:
- Generated
Attributes
- Inherited from:
- Generated
Attributes
- Inherited from:
- Generated
Attributes
- Inherited from:
- Generated
Attributes
- Inherited from:
- Generated
Attributes
- Inherited from:
- Generated
Attributes
- Inherited from:
- Generated
Attributes
- Inherited from:
- Generated
Attributes
- Inherited from:
- Generated
Attributes
- Inherited from:
- Generated
Attributes
- Inherited from:
- Generated
Attributes
- Inherited from:
- Generated
Attributes
- Inherited from:
- Generated
Attributes
- Inherited from:
- Generated
Attributes
- Inherited from:
- Generated
Attributes
- Inherited from:
- Generated
Attributes
- Inherited from:
- Generated
Attributes
- Inherited from:
- Generated
Attributes
- Inherited from:
- Readers
Attributes
- Inherited from:
- Writers
Attributes
- Inherited from:
- Readers
Attributes
- Inherited from:
- Writers
Attributes
- Inherited from:
- WritersVersionSpecific