package deser
Here we add some type aliases for things that were moved or reworked in scala 2.13.
- Alphabetic
- By Inheritance
- deser
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Type Members
- trait EitherDeserializerModule extends Module with JacksonModule
- trait EnumerationDeserializerModule extends Module with JacksonModule
- abstract class GenericFactoryDeserializerResolver[CC[_], CF[X[_]]] extends Base
- abstract class GenericMapFactoryDeserializerResolver[CC[K, V], CF[X[_, _]]] extends Base
- type IterableFactory[+CC[X] <: GenTraversable[X]] = GenericCompanion[CC]
- trait OptionDeserializerModule extends Module with OptionTypeModifierModule
- trait ScalaNumberDeserializersModule extends Module with JacksonModule
- trait ScalaObjectDeserializerModule extends Module with JacksonModule
- trait SeqDeserializerModule extends Module with ScalaTypeModifierModule
- type SortedIterableFactory[CC[A] <: SortedSet[A] with SortedSetLike[A, CC[A]]] = SortedSetFactory[CC]
- trait SortedMapDeserializerModule extends Module with MapTypeModifierModule
- trait SortedSetDeserializerModule extends Module with ScalaTypeModifierModule
- trait SymbolDeserializerModule extends Module with JacksonModule
-
trait
TupleDeserializerModule extends Module with JacksonModule
Adds deserialization support for Scala Tuples.
- trait UnsortedMapDeserializerModule extends Module with MapTypeModifierModule
- trait UnsortedSetDeserializerModule extends Module with ScalaTypeModifierModule
- trait UntypedObjectDeserializerModule extends Module with JacksonModule
Value Members
-
object
ImmutableBitSetDeserializer extends StdDeserializer[BitSet]
Adds support for deserializing Scala scala.collection.immutable.BitSets.
Adds support for deserializing Scala scala.collection.immutable.BitSets. Scala Bitsets can already be serialized using IteratorModule or DefaultScalaModule.
Do not enable this module unless you are sure that no input is accepted from untrusted sources.
Scala BitSets use memory based on the highest int value stored. So a BitSet with just one big int will use a lot more memory than a Scala BitSet with many small ints stored in it.
- Since
2.14.0
-
object
MutableBitSetDeserializer extends StdDeserializer[BitSet]
Adds support for deserializing Scala scala.collection.mutable.BitSets.
Adds support for deserializing Scala scala.collection.mutable.BitSets. Scala Bitsets can already be serialized using IteratorModule or DefaultScalaModule.
Do not enable this module unless you are sure that no input is accepted from untrusted sources.
Scala BitSets use memory based on the highest int value stored. So a BitSet with just one big int will use a lot more memory than a Scala BitSet with many small ints stored in it.
- Since
2.14.0
- object ScalaObjectDeserializerModule extends Module with ScalaObjectDeserializerModule
- object overrides