Uses of Class
com.github.difflib.patch.Chunk
-
Packages that use Chunk Package Description com.github.difflib.patch -
-
Uses of Chunk in com.github.difflib.patch
Fields in com.github.difflib.patch declared as Chunk Modifier and Type Field Description private Chunk<T>AbstractDelta. sourceprivate Chunk<T>AbstractDelta. targetMethods in com.github.difflib.patch that return Chunk Modifier and Type Method Description private static <T> Chunk<T>Patch. buildChunk(int start, int end, java.util.List<T> data)Chunk<T>AbstractDelta. getSource()Chunk<T>AbstractDelta. getTarget()Methods in com.github.difflib.patch with parameters of type Chunk Modifier and Type Method Description abstract AbstractDelta<T>AbstractDelta. withChunks(Chunk<T> original, Chunk<T> revised)Create a new delta of the actual instance with customized chunk data.AbstractDelta<T>ChangeDelta. withChunks(Chunk<T> original, Chunk<T> revised)AbstractDelta<T>DeleteDelta. withChunks(Chunk<T> original, Chunk<T> revised)AbstractDelta<T>EqualDelta. withChunks(Chunk<T> original, Chunk<T> revised)AbstractDelta<T>InsertDelta. withChunks(Chunk<T> original, Chunk<T> revised)Constructors in com.github.difflib.patch with parameters of type Chunk Constructor Description AbstractDelta(DeltaType type, Chunk<T> source, Chunk<T> target)ChangeDelta(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.
-