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

Packages that use UnitPair
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 UnitPair in org.egothor.duplicity.datastructure
 

Fields in org.egothor.duplicity.datastructure with type parameters of type UnitPair
static java.util.Comparator<UnitPair> UnitPair.comp
          Comparator using first and then second unit id for the class UnitPair.
static java.util.Comparator<UnitPair> UnitPair.compFirst
          Comparator using first unit id for the class UnitPair.
static java.util.Comparator<UnitPair> UnitPair.compSecond
          Comparator using second unit id for the class UnitPair.
 

Methods in org.egothor.duplicity.datastructure that return UnitPair
 UnitPair JaccardCoeficient.getSimilarUnitPair()
           
 

Methods in org.egothor.duplicity.datastructure with parameters of type UnitPair
 void UnitPair.copyFrom(UnitPair from)
          Copies the values of all fields from given instance.
 void JaccardCoeficient.set(UnitPair similarUnitPair, int jaccard)
           
 void JaccardCoeficient.setSimilarUnitPair(UnitPair similarUnitPair)
           
 

Constructors in org.egothor.duplicity.datastructure with parameters of type UnitPair
JaccardCoeficient(UnitPair similarUnitPair, int jaccard)
           
 

Uses of UnitPair in org.egothor.duplicity.file
 

Methods in org.egothor.duplicity.file that return types with arguments of type UnitPair
 java.util.List<UnitPair> SimilarUnitPairsFileProducer.getBuffer()
           
 

Methods in org.egothor.duplicity.file with parameters of type UnitPair
 void JaccardCoeficientsFileProducer.store(UnitPair up)
           
 

Method parameters in org.egothor.duplicity.file with type arguments of type UnitPair
protected  void MergeableSimilarUnitPairsFile.mergeAll(DataOutputStream dos, java.util.ArrayList<DataInputStream> diss, java.util.ArrayList<UnitPair> ups)
          Merges all given input streams to given output stream.
protected  void AllSimilarUnitPairsFile.mergeAll(JaccardCoeficientsFileProducer jcfp, java.util.ArrayList<DataInputStream> diss, java.util.ArrayList<UnitPair> ups)
           
protected  void MergeableSimilarUnitPairsFile.openInputs(java.util.ArrayList<CommonSimilarUnitPairsFile> supfs, java.util.ArrayList<DataInputStream> diss, java.util.ArrayList<UnitPair> ups)
          Open input files in supfs and put the opened non-empty DataInputStreams to given list diss list, and the first elements of the files to ups list.