Package | Description |
---|---|
com.github.difflib | |
com.github.difflib.algorithm.myers |
Modifier and Type | Method and Description |
---|---|
static <T> Patch<T> |
DiffUtils.diff(List<T> original,
List<T> revised,
DiffAlgorithmI<T> algorithm)
Computes the difference between the original and revised list of elements with default diff
algorithm
|
static <T> Patch<T> |
DiffUtils.diff(List<T> original,
List<T> revised,
DiffAlgorithmI<T> algorithm,
DiffAlgorithmListener progress) |
static <T> Patch<T> |
DiffUtils.diff(List<T> original,
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
|
Modifier and Type | Class and Description |
---|---|
class |
MyersDiff<T>
A clean-room implementation of Eugene Myers greedy differencing algorithm.
|
Copyright © 2009–2020 java-diff-utils. All rights reserved.