Uses of Class
org.bitbucket.cowwoc.diffmatchpatch.DiffMatchPatch.Patch
-
-
Uses of DiffMatchPatch.Patch in org.bitbucket.cowwoc.diffmatchpatch
Methods in org.bitbucket.cowwoc.diffmatchpatch that return types with arguments of type DiffMatchPatch.Patch Modifier and Type Method Description LinkedList<DiffMatchPatch.Patch>DiffMatchPatch. patchDeepCopy(LinkedList<DiffMatchPatch.Patch> patches)Given an array of patches, return another array that is identical.List<DiffMatchPatch.Patch>DiffMatchPatch. patchFromText(String textline)Parse a textual representation of patches and return a List ofPatchobjects.LinkedList<DiffMatchPatch.Patch>DiffMatchPatch. patchMake(String text1, String text2)Compute a list of patches to turn text1 into text2.LinkedList<DiffMatchPatch.Patch>DiffMatchPatch. patchMake(String text1, String text2, LinkedList<DiffMatchPatch.Diff> diffs)Deprecated.LinkedList<DiffMatchPatch.Patch>DiffMatchPatch. patchMake(String text1, LinkedList<DiffMatchPatch.Diff> diffs)Compute a list of patches to turn text1 into text2.LinkedList<DiffMatchPatch.Patch>DiffMatchPatch. patchMake(LinkedList<DiffMatchPatch.Diff> diffs)Compute a list of patches to turn text1 into text2.Methods in org.bitbucket.cowwoc.diffmatchpatch with parameters of type DiffMatchPatch.Patch Modifier and Type Method Description protected voidDiffMatchPatch. patchAddContext(DiffMatchPatch.Patch patch, String text)Increase the context until it is unique, but don't let the pattern expand beyondMATCH_MAX_BITS.Method parameters in org.bitbucket.cowwoc.diffmatchpatch with type arguments of type DiffMatchPatch.Patch Modifier and Type Method Description Object[]DiffMatchPatch. patchApply(LinkedList<DiffMatchPatch.Patch> patches, String text)Merge a set of patches onto the text.LinkedList<DiffMatchPatch.Patch>DiffMatchPatch. patchDeepCopy(LinkedList<DiffMatchPatch.Patch> patches)Given an array of patches, return another array that is identical.StringDiffMatchPatch. patchToText(List<DiffMatchPatch.Patch> patches)Take a list of patches and return a textual representation.
-