Packages

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, 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 PrimitiveSchema[P](shapeId: ShapeId, hints: Hints, tag: Primitive[P]) extends Schema[P] with Product with Serializable
  7. final case class RefinementSchema[A, B](underlying: Schema[A], refinement: Refinement[A, B]) extends Schema[B] with Product with Serializable
  8. final case class StructSchema[S](shapeId: ShapeId, hints: Hints, fields: Vector[SchemaField[S, _]], make: (IndexedSeq[Any]) => S) extends Schema[S] with Product with Serializable
  9. final case class UnionSchema[U](shapeId: ShapeId, hints: Hints, alternatives: Vector[SchemaAlt[U, _]], dispatch: (U) => SchemaAndValue[U, _]) 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. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. val bigdecimal: Schema[BigDecimal]
  6. val bigint: Schema[BigInt]
  7. def bijection[A, B](a: Schema[A], to: (A) => B, from: (B) => A): Schema[B]
  8. def bijection[A, B](a: Schema[A], bijection: Bijection[A, B]): Schema[B]
  9. val boolean: Schema[Boolean]
  10. val byte: Schema[Byte]
  11. val bytes: Schema[ByteArray]
  12. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  13. def constant[A](a: A): Schema[A]
  14. val document: Schema[Document]
  15. val double: Schema[Double]
  16. def enumeration[E <: Value](values: List[E]): Schema[E]
  17. def enumeration[E](total: (E) => EnumValue[E], values: List[EnumValue[E]]): Schema[E]
  18. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  19. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  20. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  21. val float: Schema[Float]
  22. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  23. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  24. def indexedSeq[A](a: Schema[A]): Schema[IndexedSeq[A]]
  25. val int: Schema[Int]
  26. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  27. def list[A](a: Schema[A]): Schema[List[A]]
  28. val long: Schema[Long]
  29. def map[K, V](k: Schema[K], v: Schema[V]): Schema[Map[K, V]]
  30. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  31. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  32. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  33. def recursive[A](s: => Schema[A]): Schema[A]
  34. def set[A](a: Schema[A]): Schema[Set[A]]
  35. val short: Schema[Short]
  36. val string: Schema[String]
  37. def struct[S]: PartiallyAppliedStruct[S]
  38. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  39. val timestamp: Schema[Timestamp]
  40. def toString(): String
    Definition Classes
    AnyRef → Any
  41. def transformHintsLocallyK(f: (Hints) => Hints): ~>[Schema, Schema]
  42. def transformHintsTransitivelyK(f: (Hints) => Hints): ~>[Schema, Schema]
  43. def union[U](alts: Vector[SchemaAlt[U, _]])(dispatch: (U) => SchemaAndValue[U, _]): UnionSchema[U]
  44. def union[U](alts: SchemaAlt[U, _]*)(dispatch: (U) => SchemaAndValue[U, _]): UnionSchema[U]
  45. val unit: Schema[Unit]
  46. val uuid: Schema[UUID]
  47. def vector[A](a: Schema[A]): Schema[Vector[A]]
  48. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  49. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  50. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Inherited from AnyRef

Inherited from Any

Ungrouped