object
Schema
Type Members
-
final
case class
allof[T](subTypes: Set[Schema[_]]) extends Schema[T] with Product with Serializable
-
final
case class
array[T, C[_]](componentType: Schema[T], unique: Boolean = false) extends Schema[C[T]] with Product with Serializable
-
sealed
class
boolean extends Schema[Boolean]
-
final
case class
const[T](value: Value) extends Schema[T] with Product with Serializable
-
final
case class
def[T](sig: String, tpe: Schema[_]) extends Schema[T] with Product with Serializable
-
final
case class
dictionary[K, V, C[_, _]](valueType: Schema[V]) extends Schema[C[K, V]] with Product with Serializable
-
final
case class
enum[T](tpe: Schema[_], values: Set[Value]) extends Schema[T] with Product with Serializable
-
sealed
class
integer extends Schema[Int]
-
final
case class
not[T](tpe: Schema[T]) extends Schema[T] with Product with Serializable
-
final
class
number[T] extends Schema[T]
-
sealed
case class
object[T] extends Schema[T] with Product with Serializable
-
final
case class
oneof[T](subTypes: Set[Schema[_]], discriminationField: Option[String] = None) extends Schema[T] with Product with Serializable
-
final
case class
ref[T](sig: String) extends Schema[T] with Product with Serializable
-
sealed
case class
string[T](format: Option[Format]) extends Schema[T] with Product with Serializable
-
final
case class
value-class[O, I](tpe: Schema[I]) extends Schema[O] with Product with Serializable
Value Members
-
final
def
!=(arg0: Any): Boolean
-
final
def
##(): Int
-
final
def
==(arg0: Any): Boolean
-
object
allof extends Serializable
-
def
apply[T](implicit arg0: Schema[T]): Schema[T]
-
final
def
asInstanceOf[T0]: T0
-
-
def
clone(): AnyRef
-
object
def extends Serializable
-
object
dictionary extends Serializable
-
object
enum extends Serializable
-
final
def
eq(arg0: AnyRef): Boolean
-
def
equals(arg0: Any): Boolean
-
final
def
getClass(): Class[_]
-
def
hashCode(): Int
-
-
final
def
isInstanceOf[T0]: Boolean
-
final
def
ne(arg0: AnyRef): Boolean
-
final
def
notify(): Unit
-
final
def
notifyAll(): Unit
-
-
object
object extends Serializable
-
object
oneof extends Serializable
-
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
-
def
toString(): String
-
final
def
wait(arg0: Long, arg1: Int): Unit
-
final
def
wait(arg0: Long): Unit
-
final
def
wait(): Unit
Deprecated Value Members
-
def
finalize(): Unit
Inherited from AnyRef
Inherited from Any