We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent de04bd6 commit f76abb5Copy full SHA for f76abb5
java-diff-utils/src/main/java/com/github/difflib/patch/DeltaType.java
@@ -16,7 +16,18 @@
16
package com.github.difflib.patch;
17
18
/**
19
- * Specifies the type of the delta.
+ * Specifies the type of the delta. There are three types of modifications from
20
+ * the original to get the revised text.
21
+ *
22
+ * CHANGE: a block of data of the original is replaced by another block of data.
23
+ * DELETE: a block of data of the original is removed
24
+ * INSERT: at a position of the original a block of data is inserted
25
26
+ * to be complete there is also
27
28
+ * EQUAL: a block of data of original and the revised text is equal
29
30
+ * which is no change at all.
31
*
32
*/
33
public enum DeltaType {
0 commit comments