Trait

io.github.netvl.picopickle

Backend

Related Doc: package picopickle

Permalink

trait Backend extends AnyRef

Linear Supertypes
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Backend
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. abstract type BArray <: BValue

    Permalink
  2. abstract type BBoolean <: BValue

    Permalink
  3. abstract type BNull <: BValue

    Permalink
  4. abstract type BNumber <: BValue

    Permalink
  5. abstract type BObject <: BValue

    Permalink
  6. abstract type BString <: BValue

    Permalink
  7. abstract type BValue

    Permalink

Abstract Value Members

  1. abstract def fromArray(arr: BArray): Vector[BValue]

    Permalink
  2. abstract def fromBoolean(bool: BBoolean): Boolean

    Permalink
  3. abstract def fromNumber(num: BNumber): Number

    Permalink
  4. abstract def fromNumberAccurately: PartialFunction[BValue, Number]

    Permalink
  5. abstract def fromNumberAccuratelyExpected: String

    Permalink
  6. abstract def fromObject(obj: BObject): Map[String, BValue]

    Permalink
  7. abstract def fromString(str: BString): String

    Permalink
  8. abstract def getArray(value: BValue): Option[BArray]

    Permalink
  9. abstract def getArrayLength(arr: BArray): Int

    Permalink
  10. abstract def getArrayValueAt(arr: BArray, idx: Int): BValue

    Permalink
  11. abstract def getBoolean(value: BValue): Option[BBoolean]

    Permalink
  12. abstract def getNull(value: BValue): Option[BNull]

    Permalink
  13. abstract def getNumber(value: BValue): Option[BNumber]

    Permalink
  14. abstract def getObject(value: BValue): Option[BObject]

    Permalink
  15. abstract def getObjectKey(obj: BObject, key: String): Option[BValue]

    Permalink
  16. abstract def getString(value: BValue): Option[BString]

    Permalink
  17. abstract def makeArray(v: Vector[BValue]): BArray

    Permalink
  18. abstract def makeBoolean(b: Boolean): BBoolean

    Permalink
  19. abstract def makeNull: BNull

    Permalink
  20. abstract def makeNumber(n: Number): BNumber

    Permalink
  21. abstract def makeNumberAccurately(n: Number): BValue

    Permalink
  22. abstract def makeObject(m: Map[String, BValue]): BObject

    Permalink
  23. abstract def makeString(s: String): BString

    Permalink
  24. abstract def pushToArray(arr: BArray, value: BValue): BArray

    Permalink
  25. abstract def removeObjectKey(obj: BObject, key: String): BObject

    Permalink
  26. abstract def setObjectKey(obj: BObject, key: String, value: BValue): BObject

    Permalink

Concrete 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. object Extract

    Permalink
  5. object Get

    Permalink
  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. def containsObjectKey(obj: BObject, key: String): Boolean

    Permalink
  9. object conversionImplicits

    Permalink
  10. final def eq(arg0: AnyRef): Boolean

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

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

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

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

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

    Permalink
    Definition Classes
    Any
  16. def makeEmptyArray: BArray

    Permalink
  17. def makeEmptyObject: BObject

    Permalink
  18. final def ne(arg0: AnyRef): Boolean

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

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

    Permalink
    Definition Classes
    AnyRef
  21. final def synchronized[T0](arg0: ⇒ T0): T0

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

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

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

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

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

Inherited from AnyRef

Inherited from Any

Ungrouped