Uses of Enum Class
org.jline.utils.DiffHelper.Operation
Packages that use DiffHelper.Operation
-
Uses of DiffHelper.Operation in org.jline.utils
Subclasses with type arguments of type DiffHelper.Operation in org.jline.utilsModifier and TypeClassDescriptionstatic enumThe 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."Fields in org.jline.utils declared as DiffHelper.OperationModifier and TypeFieldDescriptionfinal DiffHelper.OperationDiffHelper.Diff.operationOne of: INSERT, DELETE or EQUAL.Methods in org.jline.utils that return DiffHelper.OperationModifier and TypeMethodDescriptionstatic DiffHelper.OperationReturns the enum constant of this class with the specified name.static DiffHelper.Operation[]DiffHelper.Operation.values()Returns an array containing the constants of this enum class, in the order they are declared.Constructors in org.jline.utils with parameters of type DiffHelper.OperationModifierConstructorDescriptionDiff(DiffHelper.Operation operation, AttributedString text) Constructor.