Trait

scala.pickling.pickler

CollectionPicklers

Related Doc: package pickler

Permalink

trait CollectionPicklers extends MutableMapPicklers with ImmutableSortedMapPicklers with MapPicklers with MutableSortedSetPicklers with MutableSetPicklers with ImmutableSortedSetPicklers with SetPicklers with ArrayBufferPicklers with ArrayPicklers with VectorPicklers with LinearSeqPicklers with IndexedSeqPicklers with SeqPicklers with IterablePicklers

All collection picklers except List which is handled by a macro.

Linear Supertypes
Known Subclasses
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. CollectionPicklers
  2. IterablePicklers
  3. SeqPicklers
  4. IndexedSeqPicklers
  5. LinearSeqPicklers
  6. VectorPicklers
  7. ArrayPicklers
  8. ArrayBufferPicklers
  9. SetPicklers
  10. ImmutableSortedSetPicklers
  11. MutableSetPicklers
  12. MutableSortedSetPicklers
  13. MapPicklers
  14. ImmutableSortedMapPicklers
  15. MutableMapPicklers
  16. GeneratorRegistry
  17. AnyRef
  18. Any
  1. Hide All
  2. Show all
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. implicit def arrayBufferPickler[T](implicit arg0: FastTypeTag[T], elemPickler: Pickler[T], elemUnpickler: Unpickler[T], collTag: FastTypeTag[ArrayBuffer[T]], cbf: CanBuildFrom[ArrayBuffer[T], T, ArrayBuffer[T]]): AbstractPicklerUnpickler[ArrayBuffer[T]]

    Permalink
    Definition Classes
    ArrayBufferPicklers
  5. implicit def arrayPickler[T >: Null](implicit arg0: FastTypeTag[T], elemPickler: Pickler[T], elemUnpickler: Unpickler[T], collTag: FastTypeTag[Array[T]], cbf: CanBuildFrom[Array[T], T, Array[T]]): AbstractPicklerUnpickler[Array[T]]

    Permalink
    Definition Classes
    ArrayPicklers
  6. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  7. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  8. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  9. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  10. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  11. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  12. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  13. implicit def immutableSortedMapPickler[K, V](implicit arg0: FastTypeTag[K], arg1: FastTypeTag[V], elemPickler: Pickler[(K, V)], elemUnpickler: Unpickler[(K, V)], pairTag: FastTypeTag[(K, V)], collTag: FastTypeTag[SortedMap[K, V]], cbf: CanBuildFrom[SortedMap[K, V], (K, V), SortedMap[K, V]]): AbstractPicklerUnpickler[SortedMap[K, V]]

    Permalink
    Definition Classes
    ImmutableSortedMapPicklers
  14. implicit def immutableSortedSetPickler[T](implicit arg0: FastTypeTag[T], elemPickler: Pickler[T], elemUnpickler: Unpickler[T], collTag: FastTypeTag[SortedSet[T]], cbf: CanBuildFrom[SortedSet[T], T, SortedSet[T]]): AbstractPicklerUnpickler[SortedSet[T]]

    Permalink
    Definition Classes
    ImmutableSortedSetPicklers
  15. implicit def indexedSeqPickler[T](implicit arg0: FastTypeTag[T], elemPickler: Pickler[T], elemUnpickler: Unpickler[T], collTag: FastTypeTag[collection.IndexedSeq[T]], cbf: CanBuildFrom[collection.IndexedSeq[T], T, collection.IndexedSeq[T]]): AbstractPicklerUnpickler[collection.IndexedSeq[T]]

    Permalink
    Definition Classes
    IndexedSeqPicklers
  16. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  17. implicit def iterablePickler[T](implicit arg0: FastTypeTag[T], elemPickler: Pickler[T], elemUnpickler: Unpickler[T], collTag: FastTypeTag[Iterable[T]], cbf: CanBuildFrom[Iterable[T], T, Iterable[T]]): AbstractPicklerUnpickler[Iterable[T]]

    Permalink
    Definition Classes
    IterablePicklers
  18. implicit def linearSeqPickler[T](implicit arg0: FastTypeTag[T], elemPickler: Pickler[T], elemUnpickler: Unpickler[T], collTag: FastTypeTag[LinearSeq[T]], cbf: CanBuildFrom[LinearSeq[T], T, LinearSeq[T]]): AbstractPicklerUnpickler[LinearSeq[T]]

    Permalink
    Definition Classes
    LinearSeqPicklers
  19. implicit def listPickler[T](implicit arg0: FastTypeTag[T], elemPickler: Pickler[T], elemUnpickler: Unpickler[T], colTag: FastTypeTag[List[T]], cbf: CanBuildFrom[List[T], T, List[T]]): AbstractPicklerUnpickler[List[T]]

    Permalink
    Definition Classes
    IterablePicklers
  20. implicit def mapPickler[K, V](implicit arg0: FastTypeTag[K], arg1: FastTypeTag[V], elemPickler: Pickler[(K, V)], elemUnpickler: Unpickler[(K, V)], pairTag: FastTypeTag[(K, V)], collTag: FastTypeTag[Map[K, V]], cbf: CanBuildFrom[Map[K, V], (K, V), Map[K, V]]): AbstractPicklerUnpickler[Map[K, V]]

    Permalink
    Definition Classes
    MapPicklers
  21. implicit def mutableMapPickler[K, V](implicit arg0: FastTypeTag[K], arg1: FastTypeTag[V], elemPickler: Pickler[(K, V)], elemUnpickler: Unpickler[(K, V)], pairTag: FastTypeTag[(K, V)], collTag: FastTypeTag[Map[K, V]], cbf: CanBuildFrom[Map[K, V], (K, V), Map[K, V]]): AbstractPicklerUnpickler[Map[K, V]]

    Permalink
    Definition Classes
    MutableMapPicklers
  22. implicit def mutableSetPickler[T](implicit arg0: FastTypeTag[T], elemPickler: Pickler[T], elemUnpickler: Unpickler[T], collTag: FastTypeTag[Set[T]], cbf: CanBuildFrom[Set[T], T, Set[T]]): AbstractPicklerUnpickler[Set[T]]

    Permalink
    Definition Classes
    MutableSetPicklers
  23. implicit def mutableSortedSetPickler[T](implicit arg0: FastTypeTag[T], elemPickler: Pickler[T], elemUnpickler: Unpickler[T], collTag: FastTypeTag[SortedSet[T]], cbf: CanBuildFrom[SortedSet[T], T, SortedSet[T]]): AbstractPicklerUnpickler[SortedSet[T]]

    Permalink
    Definition Classes
    MutableSortedSetPicklers
  24. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  25. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  26. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  27. def registerGen[T](tag: String, gen: PicklerUnpicklerGen[T]): Unit

    Permalink
    Definition Classes
    GeneratorRegistry
  28. def registerPicklerAsGen[T](pu: Pickler[T] with Unpickler[T]): Unit

    Permalink
    Definition Classes
    GeneratorRegistry
  29. implicit def seqPickler[T](implicit arg0: FastTypeTag[T], elemPickler: Pickler[T], elemUnpickler: Unpickler[T], collTag: FastTypeTag[Seq[T]], cbf: CanBuildFrom[Seq[T], T, Seq[T]]): AbstractPicklerUnpickler[Seq[T]]

    Permalink
    Definition Classes
    SeqPicklers
  30. implicit def setPickler[T](implicit arg0: FastTypeTag[T], elemPickler: Pickler[T], elemUnpickler: Unpickler[T], collTag: FastTypeTag[Set[T]], cbf: CanBuildFrom[Set[T], T, Set[T]]): AbstractPicklerUnpickler[Set[T]]

    Permalink
    Definition Classes
    SetPicklers
  31. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  32. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  33. implicit def vectorPickler[T](implicit arg0: FastTypeTag[T], elemPickler: Pickler[T], elemUnpickler: Unpickler[T], collTag: FastTypeTag[Vector[T]], cbf: CanBuildFrom[Vector[T], T, Vector[T]]): AbstractPicklerUnpickler[Vector[T]]

    Permalink
    Definition Classes
    VectorPicklers
  34. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  35. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  36. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from IterablePicklers

Inherited from SeqPicklers

Inherited from IndexedSeqPicklers

Inherited from LinearSeqPicklers

Inherited from VectorPicklers

Inherited from ArrayPicklers

Inherited from ArrayBufferPicklers

Inherited from SetPicklers

Inherited from MutableSetPicklers

Inherited from MutableSortedSetPicklers

Inherited from MapPicklers

Inherited from MutableMapPicklers

Inherited from GeneratorRegistry

Inherited from AnyRef

Inherited from Any

Ungrouped