prickle

Pickler

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
Learn more about member selection
Visibility
  1. Public
  2. All

Value Members

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

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

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

    Definition Classes
    AnyRef → Any
  4. implicit object BooleanPickler extends Pickler[Boolean]

  5. implicit object BytePickler extends Pickler[Byte]

  6. implicit object CharPickler extends Pickler[Char]

  7. implicit object DatePickler extends Pickler[Date]

  8. implicit object DoublePickler extends Pickler[Double]

  9. implicit object DurationPickler extends Pickler[Duration]

  10. implicit object FloatPickler extends Pickler[Float]

  11. implicit object IntPickler extends Pickler[Int]

  12. implicit object LongPickler extends Pickler[Long]

  13. implicit object ShortPickler extends Pickler[Short]

  14. implicit object StringPickler extends Pickler[String]

  15. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  16. def clone(): AnyRef

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

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

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

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

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

    Definition Classes
    AnyRef → Any
  22. final def isInstanceOf[T0]: Boolean

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

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

  25. implicit macro def materializePickler[T]: Pickler[T]

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

    Definition Classes
    AnyRef
  27. final def notify(): Unit

    Definition Classes
    AnyRef
  28. final def notifyAll(): Unit

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

  30. def resolvingSharing[P](value: Any, fieldPickles: Seq[(String, P)], state: PickleState, config: PConfig[P]): P

    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.

  31. def resolvingSharingCollection[P](coll: Any, elems: Seq[P], state: PickleState, config: PConfig[P]): P

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

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

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

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

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

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

  37. def toString(): String

    Definition Classes
    AnyRef → Any
  38. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped