package scala

Ordering
  1. Alphabetic
Visibility
  1. Public
  2. All

Type Members

  1. class EnumerationNameSerializer extends Serializer[Value]

    Serializes enumeration by name compared to EnumerationSerializer which does by ordinal.

  2. class KryoClassResolver extends DefaultClassResolver
  3. class ScalaCollectionSerializer extends Serializer[Traversable[_]]

    Generic serializer for traversable collections

  4. class ScalaImmutableAbstractMapSerializer extends Serializer[Map[_, _]]
  5. class ScalaImmutableAbstractSetSerializer extends Serializer[Set[_]]
  6. class ScalaImmutableMapSerializer extends Serializer[Map[_, _]]
  7. class ScalaImmutableSetSerializer extends Serializer[Set[_]]
  8. class ScalaImmutableSortedSetSerializer extends Serializer[SortedSet[_]]
  9. class ScalaKryo extends Kryo
  10. class ScalaMutableMapSerializer extends Serializer[Map[_, _]]

    Module with specialized serializers for Scala Maps.

    Module with specialized serializers for Scala Maps. They are split in 3 different serializers in order: 1. To not need reflection at runtime (find if it is SortedMap) 2. Use inplace updates with mutable Maps

  11. class ScalaMutableSetSerializer extends Serializer[Set[_]]
  12. class ScalaMutableSortedSetSerializer extends Serializer[SortedSet[_]]
  13. class ScalaObjectSerializer[T] extends Serializer[T]
  14. class ScalaSortedMapSerializer extends Serializer[SortedMap[_, _]]
  15. class ScalaUnitSerializer extends Serializer[Unit]
  16. class SubclassResolver extends DefaultClassResolver
  17. class EnumerationSerializer extends Serializer[Value]

    Enumeration serializer using ordinal value.

    Enumeration serializer using ordinal value.

    Annotations
    @Deprecated
    Deprecated

    For consistency use EnumerationNameSerializer instead - will be removed in the future.

Value Members

  1. object MurmurHash

    This is a very fast, non-cryptographic hash suitable for general hash-based lookup.

    This is a very fast, non-cryptographic hash suitable for general hash-based lookup. See http://murmurhash.googlepages.com/ for more details.

    The C version of MurmurHash 2.0 found at that site was ported to Java by Andrzej Bialecki (ab at getopt org).

Ungrouped