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

Packages that use DocumentUnitID
org.egothor.core This package concentrates the core data objects and interfaces. 
org.egothor.duplicity.algorithm This package contains top-level classes that implement the duplicity checking algorithm. 
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. 
org.egothor.duplicity.visualization This package contains classes implementing the visualization of the duplicities found in a document by the duplicity checking algorithm. 
 

Uses of DocumentUnitID in org.egothor.core
 

Methods in org.egothor.core that return DocumentUnitID
 DocumentUnitID DocumentData.getDocumentUnitID()
          Get DocumentUnitID object representing this DocumentData.
 

Uses of DocumentUnitID in org.egothor.duplicity.algorithm
 

Methods in org.egothor.duplicity.algorithm that return types with arguments of type DocumentUnitID
 java.util.Set<DocumentUnitID> DuplicityChecker.append(BarrelReader br, boolean omitDuplicates, boolean visualizeDuplicities, boolean printDuplicitiesToCsv)
           
 java.util.Set<DocumentUnitID> TankerImplDuplicityChecker.append(BarrelReader barrelReader, boolean omitDuplicates, boolean visualizeDuplicities, boolean printDuplicitiesToCsv)
          Appends a reader to this tanker's duplicity checker.
 

Uses of DocumentUnitID in org.egothor.duplicity.datastructure
 

Methods in org.egothor.duplicity.datastructure that return DocumentUnitID
static DocumentUnitID DocumentUnitID.getInstance(long documentUID, int documentDBRevision)
          This is the recommended way to create an instance.
static DocumentUnitID DocumentUnitID.load(DataInputStream dis)
           
 

Method parameters in org.egothor.duplicity.datastructure with type arguments of type DocumentUnitID
 boolean JaccardCoeficient.isRelatedTo(java.util.Set<DocumentUnitID> set)
          Returns true, if one of the documents related to this Jaccard coeficient is present in the given set of documents.
 boolean UnitPair.isRelatedTo(java.util.Set<DocumentUnitID> set)
          Returns true, if one of the documents from this pair is present in the given set of documents.
 boolean UnitPermutatedMin.isRelatedTo(java.util.Set<DocumentUnitID> set)
          Returns true, if the document is present in the given set of documents.
 

Uses of DocumentUnitID in org.egothor.duplicity.file
 

Methods in org.egothor.duplicity.file that return types with arguments of type DocumentUnitID
 java.util.Map<DocumentUnitID,java.lang.Double> JaccardCoeficientsFile.markDuplicates(java.util.List<DocumentData> docs)
           
 

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

Method parameters in org.egothor.duplicity.file with type arguments of type DocumentUnitID
abstract  boolean DuplicityCheckingFileElement.isRelatedTo(java.util.Set<DocumentUnitID> set)
           
protected  void DuplicityCheckingFile.remove(DuplicityCheckingFileElement element, java.util.Set<DocumentUnitID> toRemove)
          Removes all occurences of documents given in the set from the file.
 void CommonSimilarUnitPairsFile.remove(java.util.Set<DocumentUnitID> toRemove)
          Removes all occurences of documents given in the set from the file.
 void JaccardCoeficientsFile.remove(java.util.Set<DocumentUnitID> toRemove)
          Removes all occurences of documents given in the set from the file.
 void PermutatedMinsFile.remove(java.util.Set<DocumentUnitID> toRemove)
          Removes all occurences of documents given in the set from the file.
 

Uses of DocumentUnitID in org.egothor.duplicity.visualization
 

Methods in org.egothor.duplicity.visualization with parameters of type DocumentUnitID
static DocumentDuplicities DocumentDuplicities.createNew(DocumentUnitID docID, DocumentData docMeta, JaccardCoeficientsFile jcf, TankerImplSecure tanker)
          The recommended way to create new instance of DocumentDuplicities child class.
 

Constructors in org.egothor.duplicity.visualization with parameters of type DocumentUnitID
DocumentDuplicities(DocumentUnitID docID, DocumentData docMeta, JaccardCoeficientsFile jcf, TankerImplSecure tanker)
           
DocumentDuplicitiesDocumentLevel(DocumentUnitID docID, DocumentData docMeta, JaccardCoeficientsFile jcf, TankerImplSecure tanker)
           
DocumentDuplicitiesParagraphLevel(DocumentUnitID docID, DocumentData docMeta, JaccardCoeficientsFile jcf, TankerImplSecure tanker)
           
DocumentDuplicitiesSentenceLevel(DocumentUnitID docID, DocumentData docMeta, JaccardCoeficientsFile jcf, TankerImplSecure tanker)