Enum Class DiffHelper.Operation

java.lang.Object
java.lang.Enum<DiffHelper.Operation>
org.jline.utils.DiffHelper.Operation
All Implemented Interfaces:
Serializable, Comparable<DiffHelper.Operation>, Constable
Enclosing class:
DiffHelper

public static enum DiffHelper.Operation extends Enum<DiffHelper.Operation>
The data structure representing a diff is a Linked list of Diff objects: {Diff(Operation.DELETE, "Hello"), Diff(Operation.INSERT, "Goodbye"), Diff(Operation.EQUAL, " world.")} which means: delete "Hello", add "Goodbye" and keep " world."