Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Uses of Class
recoinx.clef.CLEFResultList

Uses of CLEFResultList in recoinx.clef
 

Fields in recoinx.clef declared as CLEFResultList
private  CLEFResultList CLEFResultListMergerTest.listA
          A CLEFResultList.
private  CLEFResultList CLEFResultListMergerTest.listB
          Another CLEFResultList.
 

Methods in recoinx.clef that return CLEFResultList
static CLEFResultList ScoreNormalizer.normalize(CLEFResultList list)
          Takes the specified CLEFResultList and normalizes the scores of the contained CLEFResult objects to the range of [0,1] using the list's highest result.
static CLEFResultList ScoreNormalizer.normalize(CLEFResultList list, float maxScore)
          Takes the specified CLEFResultList and normalizes the scores of the contained CLEFResult objects to the range of by dividing all RSVs with the specified float maxScore.
 CLEFResultList CLEFResultListMerger.mergeResultLists(java.util.Vector lists)
          Merges the CLEFResultLists in the specified Vector.
 CLEFResultList CLEFResultListMerger.mergeResultLists(CLEFResultList[] resultLists, float[] resultWeights)
          Merges the specified CLEFResultLists according to the specified weights.
 CLEFResultList CLEFResultListMerger.mergeResultLists(CLEFResultList listA, CLEFResultList listB, float weightA, float weightB)
          Merges the two specified CLEFResultLists according to the specified weights.
 CLEFResultList CLEFResultListMerger.sortResultList(CLEFResultList list)
          Sorts the specified CLEFResultList returns it with the highest score first.
 

Methods in recoinx.clef with parameters of type CLEFResultList
static CLEFResultList ScoreNormalizer.normalize(CLEFResultList list)
          Takes the specified CLEFResultList and normalizes the scores of the contained CLEFResult objects to the range of [0,1] using the list's highest result.
static CLEFResultList ScoreNormalizer.normalize(CLEFResultList list, float maxScore)
          Takes the specified CLEFResultList and normalizes the scores of the contained CLEFResult objects to the range of by dividing all RSVs with the specified float maxScore.
private  boolean CLEFResultListMergerTest.checkOrder(CLEFResultList list)
          Returns true if the specified CLEFResultList is in an ordered state with the highest result as first element.
 CLEFResultList CLEFResultListMerger.mergeResultLists(CLEFResultList[] resultLists, float[] resultWeights)
          Merges the specified CLEFResultLists according to the specified weights.
 CLEFResultList CLEFResultListMerger.mergeResultLists(CLEFResultList listA, CLEFResultList listB, float weightA, float weightB)
          Merges the two specified CLEFResultLists according to the specified weights.
 CLEFResultList CLEFResultListMerger.sortResultList(CLEFResultList list)
          Sorts the specified CLEFResultList returns it with the highest score first.
 

Constructors in recoinx.clef with parameters of type CLEFResultList
CLEFResultList(CLEFResultList list)
          Creates a new CLEFResultList that copies the attributes and results of the specified CLEFResultList.