Uses of Interface
com.github.difflib.algorithm.DiffAlgorithmI
-
Packages that use DiffAlgorithmI Package Description com.github.difflib com.github.difflib.algorithm.jgit com.github.difflib.algorithm.myers -
-
Uses of DiffAlgorithmI in com.github.difflib
Methods in com.github.difflib with parameters of type DiffAlgorithmI Modifier and Type Method Description static <T> Patch<T>
DiffUtils. diff(java.util.List<T> original, java.util.List<T> revised, DiffAlgorithmI<T> algorithm)
Computes the difference between the original and revised list of elements with default diff algorithmstatic <T> Patch<T>
DiffUtils. diff(java.util.List<T> original, java.util.List<T> revised, DiffAlgorithmI<T> algorithm, DiffAlgorithmListener progress)
static <T> Patch<T>
DiffUtils. diff(java.util.List<T> original, java.util.List<T> revised, DiffAlgorithmI<T> algorithm, DiffAlgorithmListener progress, boolean includeEqualParts)
Computes the difference between the original and revised list of elements with default diff algorithm -
Uses of DiffAlgorithmI in com.github.difflib.algorithm.jgit
Classes in com.github.difflib.algorithm.jgit that implement DiffAlgorithmI Modifier and Type Class Description class
HistogramDiff<T>
HistorgramDiff using JGit - Library. -
Uses of DiffAlgorithmI in com.github.difflib.algorithm.myers
Classes in com.github.difflib.algorithm.myers that implement DiffAlgorithmI Modifier and Type Class Description class
MyersDiff<T>
A clean-room implementation of Eugene Myers greedy differencing algorithm.
-