Object/Trait

com.rayrobdod.json.union

CborValue

Related Docs: trait CborValue | package union

Permalink

object CborValue

The cases of CborValue and methods to convert other things into CborValues.

Source
CborValue.scala
Version

3.1

Since

3.0

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

Type Members

  1. final case class CborValueBoolean(b: Boolean) extends CborValue with Product with Serializable

    Permalink
  2. final class CborValueByteStr extends CborValue

    Permalink
  3. final case class CborValueNumber(value: Rational) extends CborValue with Product with Serializable

    Permalink
  4. final case class CborValueString(s: String) extends CborValue with Product with Serializable

    Permalink
  5. final case class Rational(num: BigInt, denom: BigInt) extends Product with Serializable

    Permalink

    A value represeting a whole number divided by another whole number

    A value represeting a whole number divided by another whole number

    Since

    3.1

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 CborValueByteStr

    Permalink
  5. object CborValueNull extends CborValue

    Permalink
  6. object Rational extends Serializable

    Permalink

    Factory methods for Rational

    Factory methods for Rational

    Since

    3.1

  7. implicit def apply(i: Rational): CborValue

    Permalink
  8. implicit def apply(s: Array[Byte]): CborValue

    Permalink
  9. implicit def apply(b: Boolean): CborValue

    Permalink
  10. implicit def apply(s: String): CborValue

    Permalink
  11. final def asInstanceOf[T0]: T0

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

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

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

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

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  18. implicit def implicitlyRational2CborValue[A](a: A)(implicit ev: (A) ⇒ Rational): CborValue

    Permalink

    Allows implicit conversions from Int or Double directly to CborValue

    Allows implicit conversions from Int or Double directly to CborValue

    Since

    3.1

  19. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  20. implicit def jsonValue2CborValue(s: JsonValue): CborValue

    Permalink

    Convert a JsonValue value into a CborValue

  21. final def ne(arg0: AnyRef): Boolean

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

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

    Permalink
    Definition Classes
    AnyRef
  24. implicit def stringOrInt2CborValue(s: StringOrInt): CborValue

    Permalink

    Convert a StringOrInt value into a CborValue

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

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

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

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

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

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

Inherited from AnyRef

Inherited from Any

Ungrouped