Object/Trait

prickle

Pickler

Related Docs: trait Pickler | package prickle

Permalink

object Pickler extends MaterializePicklerFallback

Do not import this companion object into scope in user code.

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Pickler
  2. MaterializePicklerFallback
  3. AnyRef
  4. 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 object BooleanPickler extends Pickler[Boolean]

    Permalink
  5. implicit object BytePickler extends Pickler[Byte]

    Permalink
  6. implicit object CharPickler extends Pickler[Char]

    Permalink
  7. implicit object DatePickler extends Pickler[Date]

    Permalink
  8. implicit object DoublePickler extends Pickler[Double]

    Permalink
  9. implicit object DurationPickler extends Pickler[Duration]

    Permalink
  10. implicit object FloatPickler extends Pickler[Float]

    Permalink
  11. implicit object IntPickler extends Pickler[Int]

    Permalink
  12. implicit object LongPickler extends Pickler[Long]

    Permalink
  13. implicit object ShortPickler extends Pickler[Short]

    Permalink
  14. implicit object StringPickler extends Pickler[String]

    Permalink
  15. implicit object UUIDPickler extends Pickler[UUID]

    Permalink
  16. implicit object UnitPickler extends Pickler[Unit]

    Permalink
  17. final def asInstanceOf[T0]: T0

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

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

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

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

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  24. implicit def immutableSeqPickler[T](implicit pickler: Pickler[T]): Pickler[Seq[T]]

    Permalink
  25. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  26. implicit def iterablePickler[T](implicit pickler: Pickler[T]): Pickler[Iterable[T]]

    Permalink
  27. implicit def listPickler[T](implicit pickler: Pickler[T]): Pickler[List[T]]

    Permalink
  28. implicit def mapPickler[K, V](implicit kpickler: Pickler[K], vpickler: Pickler[V]): Pickler[Map[K, V]]

    Permalink
  29. implicit macro def materializePickler[T]: Pickler[T]

    Permalink
    Definition Classes
    MaterializePicklerFallback
  30. final def ne(arg0: AnyRef): Boolean

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

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

    Permalink
    Definition Classes
    AnyRef
  33. implicit def optionPickler[T](implicit pickler: Pickler[T]): Pickler[Option[T]]

    Permalink
  34. def resolvingSharing[P](value: AnyRef, fieldPickles: Seq[(String, P)], state: PickleState, config: PConfig[P]): P

    Permalink

    Rendered into English: Take a value, whose fields have been pickled, and the current pickle state, and do the right thing if shared object support is enabled: - if its the first time we've seen this object, give it an id, add it to the pickle state, and emit its' pickle normally.

    Rendered into English: Take a value, whose fields have been pickled, and the current pickle state, and do the right thing if shared object support is enabled: - if its the first time we've seen this object, give it an id, add it to the pickle state, and emit its' pickle normally. - if we've seen it before, don't emit a full pickle; substitute a ref to the previous occurence.

  35. def resolvingSharingCollection[P](coll: AnyRef, elems: Iterable[P], state: PickleState, config: PConfig[P]): P

    Permalink

    As above, but for a collection whose elements are stored in a Json Array

  36. implicit def seqPickler[T](implicit pickler: Pickler[T]): Pickler[Seq[T]]

    Permalink
  37. implicit def setPickler[T](implicit pickler: Pickler[T]): Pickler[Set[T]]

    Permalink
  38. implicit def sortedMapPickler[K, V](implicit kpickler: Pickler[K], vpickler: Pickler[V]): Pickler[SortedMap[K, V]]

    Permalink
  39. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  40. implicit def toPickler[A <: AnyRef](implicit pair: PicklerPair[A]): Pickler[A]

    Permalink
  41. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  42. implicit def vectorPickler[T](implicit pickler: Pickler[T]): Pickler[Vector[T]]

    Permalink
  43. final def wait(): Unit

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

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

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

Inherited from AnyRef

Inherited from Any

Ungrouped