object Diff
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- Diff
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Type Members
- final case class BigDecimal(distance: java.math.BigDecimal, precision: Int) extends Diff[java.math.BigDecimal] with Product with Serializable
- final case class BigInt(distance: BigInteger) extends Diff[BigInteger] with Product with Serializable
- final case class Bool(xor: Boolean) extends Diff[Boolean] with Product with Serializable
- final case class EitherDiff[A, B](diff: Either[Diff[A], Diff[B]]) extends Diff[Either[A, B]] with Product with Serializable
- final case class Identical[A]() extends Diff[A] with Product with Serializable
- final case class LCS[A](edits: Chunk[Edit[A]]) extends Diff[Chunk[A]] with Product with Serializable
- final case class NotComparable[A]() extends Diff[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 Diff[A] with Product with Serializable
- final case class Record[R](differences: ListMap[String, Diff[_]], schema: Schema.Record[R]) extends Diff[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 Diff[Schema[_]] with Product with Serializable
- final case class Temporal[A](distances: List[Long], tpe: StandardType[A]) extends Diff[A] with Product with Serializable
- final case class Total[A](value: A) extends Diff[A] with Product with Serializable
- final case class Transform[A, B](diff: Diff[A], f: (A) => Either[String, B], g: (B) => Either[String, A]) extends Diff[B] with Product with Serializable
- final case class Tuple[A, B](leftDifference: Diff[A], rightDifference: Diff[B]) extends Diff[(A, B)] with Product with Serializable
- final case class ZonedDateTime(localDateTimeDiff: Diff[LocalDateTime], zoneIdDiff: Diff[String]) extends Diff[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]
- 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()