final case class ref[T](sig: String) extends Schema[T] with Product with Serializable
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- ref
- Serializable
- Product
- Equals
- Schema
- AnyRef
- Any
Implicitly
- by any2stringadd
- by StringFormat
- by Ensuring
- by ArrowAssoc
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
- new ref(sig: String)
Value Members
- object ToString
- Attributes
- protected
- Definition Classes
- Schema
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- def +(other: String): String
- def ->[B](y: B): (ref[T], B)
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def canEqual(that: Any): Boolean
- Definition Classes
- Schema
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- def description: Option[String]
- Definition Classes
- Schema
- def discriminationKey: Option[String]
- Definition Classes
- Schema
- def duplicate(description: Option[String] = this._description, title: Option[String] = this._title, discriminationKey: Option[String] = this._discriminationKey): Self
- Definition Classes
- Schema
- def ensuring(cond: (ref[T]) => Boolean, msg: => Any): ref[T]
- def ensuring(cond: (ref[T]) => Boolean): ref[T]
- def ensuring(cond: Boolean, msg: => Any): ref[T]
- def ensuring(cond: Boolean): ref[T]
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(obj: Any): Boolean
- Definition Classes
- Schema → AnyRef → Any
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def jsonType: String
- def mkCopy(): ref[T]
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- val sig: String
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def title: Option[String]
- Definition Classes
- Schema
- def toDefinition[TT >: T](sig: String): def[TT]
- Definition Classes
- Schema
- def toString(): String
- Definition Classes
- ref → AnyRef → Any
- def validations: Seq[Def[_, _]]
- Definition Classes
- Schema
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- def withDescription(x: String): Self
- Definition Classes
- Schema
- def withDiscriminationKey(x: String): Self
- Definition Classes
- Schema
- def withExtraFrom(x: Schema[_]): Self
- Definition Classes
- Schema
- def withTitle(x: String): Self
- Definition Classes
- Schema
- def withValidation[TT >: T, B](v: Def[B, _], vs: Def[B, _]*)(implicit bound: Magnet[TT, B]): Self
- Definition Classes
- Schema
- def withValidationsAddedFrom(x: Schema[_]): Self
- Definition Classes
- Schema
Deprecated Value Members
- def apply(refName: String): Schema[T]
- Definition Classes
- Schema
- Annotations
- @deprecated
- Deprecated
(Since version 1.0.0) please use
toDefinition
instead
- def formatted(fmtstr: String): String
- Implicit
- This member is added by an implicit conversion from ref[T] toStringFormat[ref[T]] performed by method StringFormat in scala.Predef.
- Definition Classes
- StringFormat
- Annotations
- @deprecated @inline()
- Deprecated
(Since version 2.12.16) Use
formatString.format(value)
instead ofvalue.formatted(formatString)
, or use thef""
string interpolator. In Java 15 and later,formatted
resolves to the new method in String which has reversed parameters.
- def →[B](y: B): (ref[T], B)
- Implicit
- This member is added by an implicit conversion from ref[T] toArrowAssoc[ref[T]] performed by method ArrowAssoc in scala.Predef.
- Definition Classes
- ArrowAssoc
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0) Use
->
instead. If you still wish to display it as one character, consider using a font with programming ligatures such as Fira Code.