Uses of Class
iglu.util.ValueSortedMap

Packages that use ValueSortedMap
iglu.examples Some examples to illustrate how the classes work. 
iglu.ir A set of classes for creating Information Retrieval programs. 
iglu.util A set of general purpose utilities. 
 

Uses of ValueSortedMap in iglu.examples
 

Fields in iglu.examples declared as ValueSortedMap
private  ValueSortedMap DirectorySearchEngine.searchResults
           
 

Methods in iglu.examples with parameters of type ValueSortedMap
private  void DirectorySearchEngine.printResults(TermVector query, ValueSortedMap results)
          Prints out the list of files that match the query.
 

Uses of ValueSortedMap in iglu.ir
 

Methods in iglu.ir that return ValueSortedMap
 ValueSortedMap InvertedIndex.getDocuments(java.lang.String term)
          Returns all documents containing term.
 ValueSortedMap FileSearchEngine.retrieveDocuments(TermVector vector, int numSimilar)
           
private  ValueSortedMap TermVector.getAllTerms()
          Get this TermVector's ValueSortedMap from the pager.
 ValueSortedMap InformationSource.retrieveDocuments(TermVector query, int numToRetrieve)
          Retrieves documents from the information source that match a given query in a particular context.
 ValueSortedMap SearchEngine.retrieveDocuments(TermVector vector, int numSimilar)
          Return a list of document identifiers with documents similar to the given vector, sorted by similarity.
 ValueSortedMap RAMSearchEngine.retrieveDocuments(TermVector vector, int numSimilar)
          Return a list of document identifiers with documents similar to the given vector, sorted by similarity.
 

Methods in iglu.ir with parameters of type ValueSortedMap
private  void TermVector.setAllTerms(ValueSortedMap vsm)
          Set this items ValueSortedMap in the pager.
 

Uses of ValueSortedMap in iglu.util
 

Subclasses of ValueSortedMap in iglu.util
 class ActiveValueSortedMap
          A value sorted map that issues events.
 

Fields in iglu.util declared as ValueSortedMap
(package private)  ValueSortedMap ValueSortedMapTableModel.tv
          The term vector being displayed.
static ValueSortedMap ValueSortedMap.EMPTY
          An empty map, for use when you don't want to do anthing to the vector.
 

Methods in iglu.util with parameters of type ValueSortedMap
private  void ValueSortedMapTableModel.loadLinkedList(ValueSortedMap tv)
          Sets up the internal representation of the TermVector
static java.lang.String VSMUtils.tableString(int n, ValueSortedMap vsm)
          Returns a string which, when printed, will display the top n elements in a table-like manner
 

Constructors in iglu.util with parameters of type ValueSortedMap
ValueSortedMapTableModel(ValueSortedMap tv)
          Creates new TermVectorTableModel
ValueSortedMapTableModel(ValueSortedMap tv, boolean reverse)
          Creates new TermVectorTableModel
ValueSortedMapTableModel(ValueSortedMap tv, int precision, boolean reverse)
          Create new TermVectorTableModel.
ValueSortedMapTableModel(ValueSortedMap tv, int precision)
          Create new TermVectorTableModel.