Uses of Class
com.github.difflib.patch.Chunk
Packages that use Chunk
-
Uses of Chunk in com.github.difflib.patch
Fields in com.github.difflib.patch declared as ChunkMethods in com.github.difflib.patch that return ChunkModifier and TypeMethodDescriptionprivate static <T> Chunk<T> Patch.buildChunk(int start, int end, List<T> data) AbstractDelta.getSource()AbstractDelta.getTarget()Methods in com.github.difflib.patch with parameters of type ChunkModifier and TypeMethodDescriptionabstract AbstractDelta<T> AbstractDelta.withChunks(Chunk<T> original, Chunk<T> revised) Create a new delta of the actual instance with customized chunk data.ChangeDelta.withChunks(Chunk<T> original, Chunk<T> revised) DeleteDelta.withChunks(Chunk<T> original, Chunk<T> revised) EqualDelta.withChunks(Chunk<T> original, Chunk<T> revised) InsertDelta.withChunks(Chunk<T> original, Chunk<T> revised) Constructors in com.github.difflib.patch with parameters of type ChunkModifierConstructorDescriptionChangeDelta(Chunk<T> source, Chunk<T> target) Creates a change delta with the two given chunks.DeleteDelta(Chunk<T> original, Chunk<T> revised) Creates a change delta with the two given chunks.EqualDelta(Chunk<T> source, Chunk<T> target) InsertDelta(Chunk<T> original, Chunk<T> revised) Creates an insert delta with the two given chunks.