Package com.logicaldoc.comparison.basic
-
Class Summary Class Description BasicComparator A comparator that simply compare texts without taking care of the formattingDiffMatch Class containing the diff, match and patch methods.DiffMatch.Diff Class representing one diff operation.DiffMatch.Patch Class representing one patch operation. -
Enum Summary Enum Description DiffMatch.Operation The data structure representing a diff is a Linked list of Diff objects: {Diff(Operation.DELETE, "Hello"), Diff(Operation.INSERT, "Goodbye"), Diff(Operation.EQUAL, " world.")} which means: delete "Hello", add "Goodbye" and keep " world."