- DEFAULT_EQUALIZER - Static variable in class com.github.difflib.text.DiffRowGenerator
-
- DeleteDelta<T> - Class in com.github.difflib.patch
-
Describes the delete-delta between original and revised texts.
- DeleteDelta(Chunk<T>, Chunk<T>) - Constructor for class com.github.difflib.patch.DeleteDelta
-
Creates a change delta with the two given chunks.
- deltaType - Variable in class com.github.difflib.algorithm.Change
-
- DeltaType - Enum in com.github.difflib.patch
-
Specifies the type of the delta.
- diff(List<T>, List<T>, DiffAlgorithmListener) - Static method in class com.github.difflib.DiffUtils
-
Computes the difference between the original and revised list of elements with default diff
algorithm
- diff(List<T>, List<T>) - Static method in class com.github.difflib.DiffUtils
-
- diff(List<T>, List<T>, boolean) - Static method in class com.github.difflib.DiffUtils
-
- diff(String, String, DiffAlgorithmListener) - Static method in class com.github.difflib.DiffUtils
-
Computes the difference between the original and revised text.
- diff(List<T>, List<T>, BiPredicate<T, T>) - Static method in class com.github.difflib.DiffUtils
-
Computes the difference between the original and revised list of elements with default diff
algorithm
- diff(List<T>, List<T>, DiffAlgorithmI<T>, DiffAlgorithmListener) - Static method in class com.github.difflib.DiffUtils
-
- diff(List<T>, List<T>, DiffAlgorithmI<T>, DiffAlgorithmListener, boolean) - Static method in class com.github.difflib.DiffUtils
-
Computes the difference between the original and revised list of elements with default diff
algorithm
- diff(List<T>, List<T>, DiffAlgorithmI<T>) - Static method in class com.github.difflib.DiffUtils
-
Computes the difference between the original and revised list of elements with default diff
algorithm
- DiffAlgorithmI<T> - Interface in com.github.difflib.algorithm
-
Interface of a diff algorithm.
- DiffAlgorithmListener - Interface in com.github.difflib.algorithm
-
- diffEnd() - Method in interface com.github.difflib.algorithm.DiffAlgorithmListener
-
- DiffException - Exception in com.github.difflib.patch
-
Base class for all exceptions emanating from this package.
- DiffException() - Constructor for exception com.github.difflib.patch.DiffException
-
- DiffException(String) - Constructor for exception com.github.difflib.patch.DiffException
-
- diffInline(String, String) - Static method in class com.github.difflib.DiffUtils
-
Computes the difference between the given texts inline.
- DiffRow - Class in com.github.difflib.text
-
Describes the diff row in form [tag, oldLine, newLine) for showing the difference between two texts
- DiffRow(DiffRow.Tag, String, String) - Constructor for class com.github.difflib.text.DiffRow
-
- DiffRow.Tag - Enum in com.github.difflib.text
-
- DiffRowGenerator - Class in com.github.difflib.text
-
This class for generating DiffRows for side-by-sidy view.
- DiffRowGenerator.Builder - Class in com.github.difflib.text
-
This class used for building the DiffRowGenerator.
- diffStart() - Method in interface com.github.difflib.algorithm.DiffAlgorithmListener
-
- diffStep(int, int) - Method in interface com.github.difflib.algorithm.DiffAlgorithmListener
-
This is a step within the diff algorithm.
- DiffUtils - Class in com.github.difflib
-
Implements the difference and patching engine