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 new implementation of UnifiedDiff Tools. -
-
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 protected abstract void
AbstractDelta. applyTo(java.util.List<T> target)
protected void
ChangeDelta. applyTo(java.util.List<T> target)
protected void
DeleteDelta. applyTo(java.util.List<T> target)
protected void
EqualDelta. applyTo(java.util.List<T> target)
protected 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
ConflictOutput. processConflict(VerifyChunk verifyChunk, AbstractDelta<T> delta, java.util.List<T> result)
protected VerifyChunk
AbstractDelta. verifyAntApplyTo(java.util.List<T> target)
VerifyChunk
Chunk. verifyChunk(java.util.List<T> target)
Verifies that this chunk's saved text matches the corresponding text in the given sequence.protected VerifyChunk
AbstractDelta. verifyChunkToFitTarget(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. applyPatchTo(java.util.function.Predicate<java.lang.String> findFile, java.util.List<java.lang.String> originalLines)
-