final case class Transform[A, B, I](schema: Schema[A], f: (A) => scala.util.Either[String, B], g: (B) => scala.util.Either[String, A], annotations: Chunk[Any], identity: I) extends Schema[B] with Product with Serializable
- Alphabetic
- By Inheritance
- Transform
- Serializable
- Product
- Equals
- Schema
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Instance Constructors
- new Transform(schema: Schema[A], f: (A) => scala.util.Either[String, B], g: (B) => scala.util.Either[String, A], annotations: Chunk[Any], identity: I)
Type Members
- type Accessors[Lens[_, _, _], Prism[_, _, _], Traversal[_, _]] = Schema.Accessors[Lens, Prism, Traversal]
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- def <*>[B](that: Schema[B]): Schema[(B, B)]
A symbolic operator for zip.
- def <+>[B](that: Schema[B]): Schema[scala.util.Either[B, B]]
A symbolic operator for orElseEither.
A symbolic operator for orElseEither.
- Definition Classes
- Schema
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- def ?: Schema[Option[B]]
A symbolic operator for optional.
- def annotate(annotation: Any): Transform[A, B, I]
Returns a new schema that with
annotation - val annotations: Chunk[Any]
Chunk of annotations for this schema
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def ast: MetaSchema
- Definition Classes
- Schema
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- def coerce[B](newSchema: Schema[B]): scala.Either[String, Schema[B]]
Convert to Schema[B] iff B and A are homomorphic.
Convert to Schema[B] iff B and A are homomorphic.
This can be used to e.g convert between a case class and it's "generic" representation as a ListMap[String,_]
- Definition Classes
- Schema
- def defaultValue: scala.util.Either[String, B]
The default value for a
Schemaof typeA. - def diff(thisValue: B, thatValue: B): Patch[B]
Performs a diff between thisValue and thatValue.
Performs a diff between thisValue and thatValue. See zio.schema.Differ for details on the default diff algorithms.
- Definition Classes
- Schema
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- val f: (A) => scala.util.Either[String, B]
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- def fromDynamic(value: DynamicValue): scala.util.Either[String, B]
- Definition Classes
- Schema
- val g: (B) => scala.util.Either[String, A]
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- val identity: I
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def makeAccessors(b: AccessorBuilder): Schema.Accessors[Lens, Prism, Traversal]
- def migrate[B](newSchema: Schema[B]): scala.Either[String, (B) => scala.util.Either[String, B]]
Generate a homomorphism from A to B iff A and B are homomorphic
Generate a homomorphism from A to B iff A and B are homomorphic
- Definition Classes
- Schema
- 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 optional: Schema[Option[B]]
Returns a new schema that modifies the type produced by this schema to be optional.
Returns a new schema that modifies the type produced by this schema to be optional.
- Definition Classes
- Schema
- def orElseEither[B](that: Schema[B]): Schema[scala.util.Either[B, B]]
Returns a new schema that combines this schema and the specified schema together, modeling their either composition.
Returns a new schema that combines this schema and the specified schema together, modeling their either composition.
- Definition Classes
- Schema
- def ordering: Ordering[B]
- Definition Classes
- Schema
- def patch(oldValue: B, diff: Patch[B]): scala.util.Either[String, B]
Patch value with a Patch.
Patch value with a Patch.
- Definition Classes
- Schema
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- def repeated: Schema[Chunk[B]]
- Definition Classes
- Schema
- val schema: Schema[A]
- def serializable: Schema[Schema[B]]
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toDynamic(value: B): DynamicValue
- Definition Classes
- Schema
- def toString(): String
- Definition Classes
- Transform → AnyRef → Any
- def transform[B](f: (B) => B, g: (B) => B)(implicit loc: SourceLocation): Schema[B]
Transforms this
Schema[A]into aSchema[B], by supplying two functions that can transform betweenAandB, without possibility of failure.Transforms this
Schema[A]into aSchema[B], by supplying two functions that can transform betweenAandB, without possibility of failure.- Definition Classes
- Schema
- def transformOrFail[B](f: (B) => scala.util.Either[String, B], g: (B) => scala.util.Either[String, B])(implicit loc: SourceLocation): Schema[B]
Transforms this
Schema[A]into aSchema[B], by supplying two functions that can transform betweenAandB(possibly failing in some cases).Transforms this
Schema[A]into aSchema[B], by supplying two functions that can transform betweenAandB(possibly failing in some cases).- Definition Classes
- Schema
- def validate(value: B)(implicit schema: Schema[B]): Chunk[ValidationError]
- 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 zip[B](that: Schema[B]): Schema[(B, B)]
Returns a new schema that combines this schema and the specified schema together, modeling their tuple composition.
Returns a new schema that combines this schema and the specified schema together, modeling their tuple composition.
- Definition Classes
- Schema