object Schema

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

Type Members

  1. final case class BijectionSchema[A, B](underlying: Schema[A], bijection: Bijection[A, B]) extends Schema[B] with Product with Serializable
  2. final case class CollectionSchema[C[_], A](shapeId: ShapeId, hints: Hints, tag: CollectionTag[C], member: Schema[A]) extends Schema[C[A]] with Product with Serializable
  3. final case class EnumerationSchema[E](shapeId: ShapeId, hints: Hints, tag: EnumTag[E], values: List[EnumValue[E]], total: (E) => EnumValue[E]) extends Schema[E] with Product with Serializable
  4. final case class LazySchema[A](suspend: Lazy[Schema[A]]) extends Schema[A] with Product with Serializable
  5. final case class MapSchema[K, V](shapeId: ShapeId, hints: Hints, key: Schema[K], value: Schema[V]) extends Schema[Map[K, V]] with Product with Serializable
  6. final case class OptionSchema[A](underlying: Schema[A]) extends Schema[Option[A]] with Product with Serializable
  7. final case class PrimitiveSchema[P](shapeId: ShapeId, hints: Hints, tag: Primitive[P]) extends Schema[P] with Product with Serializable
  8. final case class RefinementSchema[A, B](underlying: Schema[A], refinement: Refinement[A, B]) extends Schema[B] with Product with Serializable
  9. final case class StructSchema[S](shapeId: ShapeId, hints: Hints, fields: Vector[Field[S, _]], make: (IndexedSeq[Any]) => S) extends Schema[S] with Product with Serializable
  10. final case class UnionSchema[U](shapeId: ShapeId, hints: Hints, alternatives: Vector[Alt[U, _]], ordinal: (U) => Int) extends Schema[U] with Product with Serializable

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. def apply[A](implicit ev: Schema[A]): ev.type
  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. val bigdecimal: Schema[BigDecimal]
  7. val bigint: Schema[BigInt]
  8. def bijection[A, B](a: Schema[A], to: (A) => B, from: (B) => A): Schema[B]
  9. def bijection[A, B](a: Schema[A], bijection: Bijection[A, B]): Schema[B]
  10. val blob: Schema[Blob]
  11. val boolean: Schema[Boolean]
  12. val byte: Schema[Byte]
  13. val bytes: Schema[Blob]
  14. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  15. def constant[A](a: A): Schema[A]
  16. val document: Schema[Document]
  17. val double: Schema[Double]
  18. def either[A, B](left: Schema[A], right: Schema[B]): Schema[Either[A, B]]
  19. def enumeration[E <: Value](tag: EnumTag[E], values: List[E]): Schema[E]
  20. def enumeration[E](total: (E) => EnumValue[E], tag: EnumTag[E], values: List[EnumValue[E]]): Schema[E]
  21. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  22. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  23. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  24. val float: Schema[Float]
  25. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  26. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  27. def indexedSeq[A](a: Schema[A]): Schema[IndexedSeq[A]]
  28. val int: Schema[Int]
  29. def intEnumeration[E <: Value](values: List[E]): Schema[E]
  30. def intEnumeration[E](total: (E) => EnumValue[E], values: List[EnumValue[E]]): Schema[E]
  31. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  32. def list[A](a: Schema[A]): Schema[List[A]]
  33. val long: Schema[Long]
  34. def map[K, V](k: Schema[K], v: Schema[V]): Schema[Map[K, V]]
  35. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  36. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  37. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  38. def operation(id: ShapeId): OperationSchema[Unit, Nothing, Unit, Nothing, Nothing]
  39. def option[A](s: Schema[A]): Schema[Option[A]]
  40. def recursive[A](s: => Schema[A]): Schema[A]
  41. def set[A](a: Schema[A]): Schema[Set[A]]
  42. val short: Schema[Short]
  43. def sparseIndexedSeq[A](a: Schema[A]): Schema[IndexedSeq[Option[A]]]
  44. def sparseList[A](a: Schema[A]): Schema[List[Option[A]]]
  45. def sparseMap[K, V](k: Schema[K], v: Schema[V]): Schema[Map[K, Option[V]]]
  46. def sparseSet[A](a: Schema[A]): Schema[Set[Option[A]]]
  47. def sparseVector[A](a: Schema[A]): Schema[Vector[Option[A]]]
  48. val string: Schema[String]
  49. def stringEnumeration[E <: Value](values: List[E]): Schema[E]
  50. def stringEnumeration[E](total: (E) => EnumValue[E], values: List[EnumValue[E]]): Schema[E]
  51. def struct[S]: PartiallyAppliedStruct[S]
  52. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  53. val timestamp: Schema[Timestamp]
  54. def toString(): String
    Definition Classes
    AnyRef → Any
  55. def transformHintsLocallyK(f: (Hints) => Hints): ~>[Schema, Schema]
  56. def transformHintsTransitivelyK(f: (Hints) => Hints): ~>[Schema, Schema]
  57. val tuple: PartiallyAppliedTuple
  58. def union[U](alts: Alt[U, _]*): PartiallyAppliedUnion[U]
  59. def union[U](alts: Vector[Alt[U, _]]): PartiallyAppliedUnion[U]
  60. val unit: Schema[Unit]
  61. val uuid: Schema[UUID]
  62. def vector[A](a: Schema[A]): Schema[Vector[A]]
  63. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  64. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  65. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Inherited from AnyRef

Inherited from Any

Ungrouped