object Diff
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- Diff
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Type Members
- case class Add[T](aPosition: Int, bPosition: Int, aLines: Array[T], bLines: Array[T]) extends Delta[T] with Product with Serializable
- case class Change[T](aPosition: Int, bPosition: Int, aLines: Array[T], bLines: Array[T]) extends Delta[T] with Product with Serializable
- case class Delete[T](aPosition: Int, bPosition: Int, aLines: Array[T], bLines: Array[T]) extends Delta[T] with Product with Serializable
- sealed abstract class Delta[T] extends AnyRef
- class PathNode extends AnyRef
- class Str extends Diff[String]
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
-
def
apply[T](comparator: (T, T) ⇒ Boolean = (a: T, b: T) => a == b): Diff[T]
Create a differ with the specified comparator.
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
caseInsensitive: Str
Creates a case insensitive diff for Strings.
-
def
caseSensitive: Str
Creates a case sensitive diff for Strings.
-
def
clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
ignoreAllSpace: Str
Creates a diff Strings that ignore all space.
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
def
makeString[T](deltas: Traversable[Delta[T]]): String
Convert all the list of deltas to a single string.
-
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
stringDiffer(comparator: (String, String) ⇒ Boolean): Str
Create a differ with the specified String comparator.
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
def
trimming: Str
Creates a case sensitive diff that trim Strings, before comparing them.
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )
- object Delta
- object PathNode