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: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

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

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

    Definition Classes
    Any
  6. implicit object BooleanPickler extends Pickler[Boolean]

  7. implicit object BytePickler extends Pickler[Byte]

  8. implicit object CharPickler extends Pickler[Char]

  9. implicit object DatePickler extends Pickler[Date]

  10. implicit object DoublePickler extends Pickler[Double]

  11. implicit object DurationPickler extends Pickler[Duration]

  12. implicit object FloatPickler extends Pickler[Float]

  13. implicit object IntPickler extends Pickler[Int]

  14. implicit object LongPickler extends Pickler[Long]

  15. implicit object ShortPickler extends Pickler[Short]

  16. implicit object StringPickler extends Pickler[String]

  17. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  18. def clone(): AnyRef

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

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

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

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

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

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

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

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

  27. implicit def materializePickler[T]: Pickler[T]

    Definition Classes
    MaterializePicklerFallback
    Annotations
    @macroImpl( ... )
  28. final def ne(arg0: AnyRef): Boolean

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

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

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

  32. 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.

  33. 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

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

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

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

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

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

  39. def toString(): String

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

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped