Packages

final case class array[T, C[_]](componentType: Schema[T]) extends Schema[C[T]] with Product with Serializable

Linear Supertypes
Serializable, Schema[C[T]], Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. array
  2. Serializable
  3. Schema
  4. Product
  5. Equals
  6. AnyRef
  7. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new array(componentType: Schema[T])

Type Members

  1. type Self = array[T, C]
    Definition Classes
    arraySchema

Value Members

  1. def apply(refName: String): Self
    Definition Classes
    Schema
  2. def canEqual(that: Any): Boolean
    Definition Classes
    arraySchema → Equals
  3. val componentType: Schema[T]
  4. def description: Option[String]
    Definition Classes
    Schema
  5. def duplicate(description: Option[String] = this._description, title: Option[String] = this._title): Self
    Definition Classes
    Schema
  6. def equals(obj: Any): Boolean
    Definition Classes
    arraySchema → Equals → AnyRef → Any
  7. def jsonType: String
    Definition Classes
    Schema
  8. def mkCopy(): array[T, C]
    Definition Classes
    arraySchema
  9. def productElementNames: Iterator[String]
    Definition Classes
    Product
  10. def refName: Option[String]
    Definition Classes
    Schema
  11. def title: Option[String]
    Definition Classes
    Schema
  12. def toString(): String
    Definition Classes
    Schema → AnyRef → Any
  13. def validations: Seq[ValidationDef[_, _]]
    Definition Classes
    Schema
  14. def withDescription(x: String): Self
    Definition Classes
    Schema
  15. def withTitle(x: String): Self
    Definition Classes
    Schema
  16. def withValidation[TT >: C[T], B](v: ValidationDef[B, _], vs: ValidationDef[B, _]*)(implicit bound: ValidationBound[TT, B]): Self
    Definition Classes
    Schema