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 void
AbstractDelta. applyTo(java.util.List<T> target)
void
ChangeDelta. applyTo(java.util.List<T> target)
void
DeleteDelta. applyTo(java.util.List<T> target)
void
EqualDelta. applyTo(java.util.List<T> target)
void
InsertDelta. applyTo(java.util.List<T> target)
java.util.List<T>
Patch. applyTo(java.util.List<T> target)
Apply this patch to the given targetvoid
Chunk. verify(java.util.List<T> target)
Verifies that this chunk's saved text matches the corresponding text in the given sequence.protected void
AbstractDelta. 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)
-