Uses of Class
org.egothor.duplicity.datastructure.TextUnitID

Packages that use TextUnitID
org.egothor.core This package concentrates the core data objects and interfaces. 
org.egothor.duplicity.datastructure This package contains datastructures needed in the duplicity checking algorithm. 
org.egothor.duplicity.file This package contains implementation of the files needed the duplicity checking algorithm. 
 

Uses of TextUnitID in org.egothor.core
 

Methods in org.egothor.core that return TextUnitID
 TextUnitID Token.getTextUnit(long uid, int revision)
          Returns the identificator of the text unit to which the token falls into.
 

Uses of TextUnitID in org.egothor.duplicity.datastructure
 

Subclasses of TextUnitID in org.egothor.duplicity.datastructure
 class DocumentUnitID
          Class represents a unit of text on document duplicity checking level (see Constants.CHECK_DUPLICITY_LEVEL).
 class ParagraphUnitID
          Class represents a unit of text on paragraph duplicity checking level (see Constants.CHECK_DUPLICITY_LEVEL).
 class SentenceUnitID
          Class represents a unit of text on sentence duplicity checking level (see Constants.CHECK_DUPLICITY_LEVEL).
 

Methods in org.egothor.duplicity.datastructure that return TextUnitID
 TextUnitID UnitPair.getFirstUnitID()
           
static TextUnitID TextUnitID.getInstance()
          The recommended way to create new instance of TextUnitID child class.
 TextUnitID UnitPair.getSecondUnitID()
           
 TextUnitID UnitPermutatedMin.getUnitID()
           
static TextUnitID TextUnitID.load(DataInputStream dis)
          The method must return another object, it can not change the this value.
 

Methods in org.egothor.duplicity.datastructure with parameters of type TextUnitID
 void DocumentPermutatedMins.addMinForPermutation(long permID, TextUnitID unitID, long min)
          Adds minimum for given permutation and duplicity checking unit.
 

Constructors in org.egothor.duplicity.datastructure with parameters of type TextUnitID
JaccardCoeficient(TextUnitID first, TextUnitID second, int jaccard)
           
UnitPair(TextUnitID first, TextUnitID second)
           
UnitPermutatedMin(long min, TextUnitID unitID)
           
 

Uses of TextUnitID in org.egothor.duplicity.file
 

Methods in org.egothor.duplicity.file that return types with arguments of type TextUnitID
 java.util.Map<TextUnitID,JaccardCoeficient> JaccardCoeficientsFile.filterRelevantForDocument(DocumentUnitID doc)
          Filter from the file only the entries relevant for given document.
 

Methods in org.egothor.duplicity.file with parameters of type TextUnitID
 void SimilarUnitPairsFileProducer.add(TextUnitID first, TextUnitID second)
          Adds new UnitPair to the file.