Uses of Class
com.github.difflib.patch.PatchFailedException
-
Packages that use PatchFailedException Package Description com.github.difflib com.github.difflib.patch com.github.difflib.unifieddiff This is the first test version of a multifile diff parser. -
-
Uses of PatchFailedException in com.github.difflib
Methods in com.github.difflib that throw PatchFailedException Modifier and Type Method Description static <T> java.util.List<T>DiffUtils. patch(java.util.List<T> original, Patch<T> patch)Patch the original text with given patch -
Uses of PatchFailedException in com.github.difflib.patch
Methods in com.github.difflib.patch that throw PatchFailedException Modifier and Type Method Description abstract voidAbstractDelta. applyTo(java.util.List<T> target)voidChangeDelta. applyTo(java.util.List<T> target)voidDeleteDelta. applyTo(java.util.List<T> target)voidEqualDelta. applyTo(java.util.List<T> target)voidInsertDelta. applyTo(java.util.List<T> target)java.util.List<T>Patch. applyTo(java.util.List<T> target)Apply this patch to the given targetvoidChunk. verify(java.util.List<T> target)Verifies that this chunk's saved text matches the corresponding text in the given sequence.protected voidAbstractDelta. verifyChunk(java.util.List<T> target)Verify the chunk of this delta, to fit the target. -
Uses of PatchFailedException in com.github.difflib.unifieddiff
Methods in com.github.difflib.unifieddiff that throw PatchFailedException Modifier and Type Method Description java.util.List<java.lang.String>UnifiedDiff. spplyPatchTo(java.util.function.Predicate<java.lang.String> findFile, java.util.List<java.lang.String> originalLines)
-