Packages

object Diff

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Diff
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. case class Add[T](aPosition: Int, bPosition: Int, aLines: Array[T], bLines: Array[T]) extends Delta[T] with Product with Serializable
  2. case class Change[T](aPosition: Int, bPosition: Int, aLines: Array[T], bLines: Array[T]) extends Delta[T] with Product with Serializable
  3. case class Delete[T](aPosition: Int, bPosition: Int, aLines: Array[T], bLines: Array[T]) extends Delta[T] with Product with Serializable
  4. sealed abstract class Delta[T] extends AnyRef
  5. class PathNode extends AnyRef
  6. class Str extends Diff[String]

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. def apply[T](comparator: (T, T) ⇒ Boolean = (a: T, b: T) => a == b): Diff[T]

    Create a differ with the specified comparator.

  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. def caseInsensitive: Str

    Creates a case insensitive diff for Strings.

  7. def caseSensitive: Str

    Creates a case sensitive diff for Strings.

  8. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native() @IntrinsicCandidate()
  9. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  10. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  11. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @IntrinsicCandidate()
  12. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @IntrinsicCandidate()
  13. def ignoreAllSpace: Str

    Creates a diff Strings that ignore all space.

  14. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  15. def makeString[T](deltas: Traversable[Delta[T]]): String

    Convert all the list of deltas to a single string.

  16. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  17. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @IntrinsicCandidate()
  18. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @IntrinsicCandidate()
  19. def stringDiffer(comparator: (String, String) ⇒ Boolean): Str

    Create a differ with the specified String comparator.

  20. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  21. def toString(): String
    Definition Classes
    AnyRef → Any
  22. def trimming: Str

    Creates a case sensitive diff that trim Strings, before comparing them.

  23. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  24. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  25. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  26. object Delta
  27. object PathNode

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] ) @Deprecated
    Deprecated

Inherited from AnyRef

Inherited from Any

Ungrouped