Uses of Class
org.eclipse.jgit.diff.HashedSequence
-
Packages that use HashedSequence Package Description org.eclipse.jgit.diff Comparing file contents by computing diffs. -
-
Uses of HashedSequence in org.eclipse.jgit.diff
Fields in org.eclipse.jgit.diff declared as HashedSequence Modifier and Type Field Description private HashedSequence<S>
HistogramDiff.State. a
private HashedSequence<S>
HistogramDiffIndex. a
protected HashedSequence<S>
MyersDiff. a
The first text to be compared.private HashedSequence<S>
HistogramDiff.State. b
private HashedSequence<S>
HistogramDiffIndex. b
protected HashedSequence<S>
MyersDiff. b
The second text to be compared.private HashedSequence<S>
HashedSequencePair. cachedA
private HashedSequence<S>
HashedSequencePair. cachedB
Methods in org.eclipse.jgit.diff that return HashedSequence Modifier and Type Method Description HashedSequence<S>
HashedSequencePair. getA()
Get AHashedSequence<S>
HashedSequencePair. getB()
Get Bprivate HashedSequence<S>
HashedSequencePair. wrap(S base)
Methods in org.eclipse.jgit.diff that return types with arguments of type HashedSequence Modifier and Type Method Description private SubsequenceComparator<HashedSequence<S>>
HistogramDiff.State. subcmp()
Methods in org.eclipse.jgit.diff with parameters of type HashedSequence Modifier and Type Method Description <S extends Sequence>
voidHistogramDiff. diffNonCommon(EditList edits, HashedSequenceComparator<S> cmp, HashedSequence<S> a, HashedSequence<S> b, Edit region)
Compare two sequences and identify a list of edits between them.abstract <S extends Sequence>
voidLowLevelDiffAlgorithm. diffNonCommon(EditList edits, HashedSequenceComparator<S> cmp, HashedSequence<S> a, HashedSequence<S> b, Edit region)
Compare two sequences and identify a list of edits between them.boolean
HashedSequenceComparator. equals(HashedSequence<S> a, int ai, HashedSequence<S> b, int bi)
Compare two items to determine if they are equivalent.int
HashedSequenceComparator. hash(HashedSequence<S> seq, int ptr)
Get a hash value for an item in a sequence.private int
HistogramDiffIndex. hash(HashedSequence<S> s, int idx)
Constructors in org.eclipse.jgit.diff with parameters of type HashedSequence Constructor Description HistogramDiffIndex(int maxChainLength, HashedSequenceComparator<S> cmp, HashedSequence<S> a, HashedSequence<S> b, Edit r)
MyersDiff(EditList edits, HashedSequenceComparator<S> cmp, HashedSequence<S> a, HashedSequence<S> b, Edit region)
State(EditList edits, HashedSequenceComparator<S> cmp, HashedSequence<S> a, HashedSequence<S> b)
-