Packages

package deser

Here we add some type aliases for things that were removed or reworked in scala 2.13.

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. deser
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. trait EitherDeserializerModule extends databind.JacksonModule with JacksonModule
  2. trait EnumerationDeserializerModule extends databind.JacksonModule with JacksonModule
  3. abstract class GenericFactoryDeserializerResolver[CC[_], CF[X[_]]] extends Base
  4. abstract class GenericMapFactoryDeserializerResolver[CC[K, V], CF[X[_, _]]] extends Base
  5. class 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

  6. class 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

  7. trait OptionDeserializerModule extends databind.JacksonModule with OptionTypeModifierModule
  8. trait ScalaNumberDeserializersModule extends databind.JacksonModule with JacksonModule
  9. trait ScalaObjectDeserializerModule extends databind.JacksonModule with JacksonModule
  10. trait SeqDeserializerModule extends databind.JacksonModule with ScalaTypeModifierModule
  11. trait SortedMapDeserializerModule extends databind.JacksonModule with MapTypeModifierModule
  12. trait SortedSetDeserializerModule extends databind.JacksonModule with ScalaTypeModifierModule
  13. trait SymbolDeserializerModule extends databind.JacksonModule with JacksonModule
  14. trait TupleDeserializerModule extends databind.JacksonModule with JacksonModule

    Adds deserialization support for Scala Tuples.

  15. trait UnsortedMapDeserializerModule extends databind.JacksonModule with MapTypeModifierModule
  16. trait UnsortedSetDeserializerModule extends databind.JacksonModule with ScalaTypeModifierModule
  17. trait UntypedObjectDeserializerModule extends databind.JacksonModule with JacksonModule

Inherited from AnyRef

Inherited from Any

Ungrouped