Class StringsComparator
- java.lang.Object
-
- org.apache.commons.text.diff.StringsComparator
-
public class StringsComparator extends java.lang.Object
It is guaranteed that the comparisons will always be done as
o1.equals(o2)
whereo1
belongs to the first sequence ando2
belongs to the second sequence. This can be important if subclassing is used for some elements in the first sequence and theequals
method is specialized.Comparison can be seen from two points of view: either as giving the smallest modification allowing to transform the first sequence into the second one, or as giving the longest sequence which is a subsequence of both initial sequences. The
equals
method is used to compare objects, so any object can be put into sequences. Modifications include deleting, inserting or keeping one object, starting from the beginning of the first sequence.This class implements the comparison algorithm, which is the very efficient algorithm from Eugene W. Myers An O(ND) Difference Algorithm and Its Variations. This algorithm produces the shortest possible
edit script
containing all thecommands
needed to transform the first sequence into the second one.This code has been adapted from Apache Commons Collections 4.0.
- Since:
- 1.0
- See Also:
EditScript
,EditCommand
,CommandVisitor
-
-
Constructor Summary
Constructors Constructor Description StringsComparator(java.lang.String left, java.lang.String right)
Simple constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description EditScript<java.lang.Character>
getScript()
Get theEditScript
object.
-
-
-
Constructor Detail
-
StringsComparator
public StringsComparator(java.lang.String left, java.lang.String right)
Simple constructor.Creates a new instance of StringsComparator.
It is guaranteed that the comparisons will always be done as
o1.equals(o2)
whereo1
belongs to the first sequence ando2
belongs to the second sequence. This can be important if subclassing is used for some elements in the first sequence and theequals
method is specialized.- Parameters:
left
- first character sequence to be comparedright
- second character sequence to be compared
-
-
Method Detail
-
getScript
public EditScript<java.lang.Character> getScript()
Get theEditScript
object.It is guaranteed that the objects embedded in the
insert commands
come from the second sequence and that the objects embedded in either thedelete commands
orkeep commands
come from the first sequence. This can be important if subclassing is used for some elements in the first sequence and theequals
method is specialized.- Returns:
- The edit script resulting from the comparison of the two sequences
-
-