object Patch
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- Patch
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Type Members
- final case class BigDecimal(distance: java.math.BigDecimal, precision: Int) extends Patch[java.math.BigDecimal] with Product with Serializable
- final case class BigInt(distance: BigInteger) extends Patch[BigInteger] with Product with Serializable
- final case class Bool(xor: Boolean) extends Patch[Boolean] with Product with Serializable
- final case class EitherDiff[A, B](diff: Either[Patch[A], Patch[B]]) extends Patch[Either[A, B]] with Product with Serializable
- final case class Identical[A]() extends Patch[A] with Product with Serializable
- final case class LCS[A](edits: Chunk[Edit[A]]) extends Patch[Chunk[A]] with Product with Serializable
- final case class NotComparable[A]() extends Patch[A] with Product with Serializable
Represents diff between incomparable values.
Represents diff between incomparable values. For instance Left(1) and Right("a")
- final case class Number[A](distance: A)(implicit ev: Numeric[A]) extends Patch[A] with Product with Serializable
- final case class Record[R](differences: ListMap[String, Patch[_]], schema: Schema.Record[R]) extends Patch[R] with Product with Serializable
Map of field-level diffs between two records.
Map of field-level diffs between two records. The map of differences is keyed to the records field names.
- final case class SchemaMigration(migrations: Chunk[Migration]) extends Patch[Schema[_]] with Product with Serializable
- final case class Temporal[A](distances: List[Long], tpe: StandardType[A]) extends Patch[A] with Product with Serializable
- final case class Total[A](value: A) extends Patch[A] with Product with Serializable
- final case class Transform[A, B](patch: Patch[A], f: (A) => Either[String, B], g: (B) => Either[String, A]) extends Patch[B] with Product with Serializable
- final case class Tuple[A, B](leftDifference: Patch[A], rightDifference: Patch[B]) extends Patch[(A, B)] with Product with Serializable
- final case class ZonedDateTime(localDateTimeDiff: Patch[LocalDateTime], zoneIdDiff: Patch[String]) extends Patch[java.time.ZonedDateTime] with Product with Serializable
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- 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()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def identical[A]: Identical[A]
- def invert[A](patch: Patch[A]): Patch[A]
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def notComparable[A]: NotComparable[A]
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- 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()