Uses of Enum Class
at.letto.tools.diff_match_patch.Operation
Packages that use diff_match_patch.Operation
Package
Description
Package mit Tools, welche ohne Verbindung zu den anderen Letto-Komponenten funktioniert und in allen
Microservices von Letto eingebunden werden sollte.
-
Uses of diff_match_patch.Operation in at.letto.tools
Subclasses with type arguments of type diff_match_patch.Operation in at.letto.toolsModifier 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 at.letto.tools declared as diff_match_patch.OperationModifier and TypeFieldDescriptiondiff_match_patch.Diff.operationOne of: INSERT, DELETE or EQUAL.Methods in at.letto.tools that return diff_match_patch.OperationModifier and TypeMethodDescriptionstatic diff_match_patch.OperationReturns the enum constant of this class with the specified name.static diff_match_patch.Operation[]diff_match_patch.Operation.values()Returns an array containing the constants of this enum class, in the order they are declared.Constructors in at.letto.tools with parameters of type diff_match_patch.OperationModifierConstructorDescriptionDiff(diff_match_patch.Operation operation, String text) Constructor.