Uses of Interface
com.sun.labs.minion.ResultSet

Packages that use ResultSet
com.sun.labs.minion Provides the API for interacting with the Minion Search Engine. 
com.sun.labs.minion.classification Provides the automatic document classification functionality in Minion. 
com.sun.labs.minion.clustering Provides document clustering functionality. 
com.sun.labs.minion.engine Provides implementations for some of the end-user interfaces. 
com.sun.labs.minion.indexer.partition Provides the classes that implement the partitions of the indexer. 
com.sun.labs.minion.lexmorph.disambiguation   
com.sun.labs.minion.retrieval Provides the query evaluation capabilities for Minion. 
com.sun.labs.minion.test Provides test classes and utilities for indexing and querying. 
 

Uses of ResultSet in com.sun.labs.minion
 

Methods in com.sun.labs.minion that return ResultSet
 ResultSet ResultSet.difference(ResultSet rs)
          Computes the difference of this result set and another result set.
 ResultSet DocumentVector.findSimilar()
          Finds documents that are similar to this one.
 ResultSet DocumentVector.findSimilar(java.lang.String sortOrder)
          Finds documents that are similar to this one.
 ResultSet DocumentVector.findSimilar(java.lang.String sortOrder, double skimPercent)
          Finds documents that are similar to this one.
 ResultSet ResultsCluster.getResults()
          Gets the results that make up this cluster.
 ResultSet SearchEngine.getResults(java.util.Collection<java.lang.String> keys)
          Gets a set of results corresponding to the document keys passed in.
 ResultSet SearchEngine.getSimilar(java.lang.String key, java.lang.String name)
          Gets a set of results ordered by similarity to the given document, calculated by computing the euclidean distance based on the feature vector stored in the given field.
 ResultSet Classifier.getTrainingDocuments(java.lang.String className)
          Returns the set of documents that was used to train the classifier for the class with the provided class name.
 ResultSet ResultSet.intersect(ResultSet rs)
          Computes the intersection of this result set with another result set.
 ResultSet SearchEngine.search(Element el)
          Runs a query against the index, returning a set of results.
 ResultSet SearchEngine.search(Element el, java.lang.String sortOrder)
          Runs a query against the index, returning a set of results.
 ResultSet SearchEngine.search(java.lang.String query)
          Runs a query against the index, returning a set of results.
 ResultSet Searcher.search(java.lang.String query)
          Runs a query against the engines, returning a set of results.
 ResultSet SearchEngine.search(java.lang.String query, java.lang.String sortOrder)
          Runs a query against the index, returning a set of results.
 ResultSet Searcher.search(java.lang.String query, java.lang.String sortOrder)
          Runs a query against the engines, returning a set of results.
 ResultSet SearchEngine.search(java.lang.String query, java.lang.String sortOrder, int defaultOperator, int grammar)
          Runs a query against the index, returning a set of results.
 ResultSet Searcher.search(java.lang.String query, java.lang.String sortOrder, int defaultOperator, int grammar)
          Runs a query against the engines, returning a set of results.
 ResultSet ResultSet.union(ResultSet rs)
          Computes the intersection of this result set with another result set.
 ResultSet ResultSet.weight(float w)
          Weights the results in this set.
 

Methods in com.sun.labs.minion with parameters of type ResultSet
 ResultSet ResultSet.difference(ResultSet rs)
          Computes the difference of this result set and another result set.
 ResultSet ResultSet.intersect(ResultSet rs)
          Computes the intersection of this result set with another result set.
 void Classifier.trainClass(ResultSet results, java.lang.String className, java.lang.String fieldName)
          Generates a classifier based on the documents in the provided result set.
 void Classifier.trainClass(ResultSet results, java.lang.String className, java.lang.String fieldName, Progress p)
          Generates a classifier based on the documents in the provided result set.
 void Classifier.trainClass(ResultSet results, java.lang.String className, java.lang.String fieldName, java.lang.String fromField)
          Generates a classifier based on the documents in the provided result set.
 void Classifier.trainClass(ResultSet results, java.lang.String className, java.lang.String fieldName, java.lang.String fromField, Progress progress)
          Generates a classifier based on the documents in the provided result set.
 ResultSet ResultSet.union(ResultSet rs)
          Computes the intersection of this result set with another result set.
 

Uses of ResultSet in com.sun.labs.minion.classification
 

Methods in com.sun.labs.minion.classification that return ResultSet
 ResultSet Rocchio.findSimilar()
           
 ResultSet Rocchio.findSimilar(java.lang.String fromField)
          Finds the documents that are most similar to this classifier, whether they are in the class or not.
 

Methods in com.sun.labs.minion.classification with parameters of type ResultSet
 void ClassifierManager.trainClassifier(java.lang.String className, ResultSet docs)
          Creates a new classifier based on the classifier model for this collection, the documents in the ResultSet, and the set of currently indexed documents.
 

Uses of ResultSet in com.sun.labs.minion.clustering
 

Methods in com.sun.labs.minion.clustering that return ResultSet
 ResultSet ResultsClusterImpl.getResults()
           
 

Methods in com.sun.labs.minion.clustering with parameters of type ResultSet
 void AbstractClusterer.setResults(ResultSet r)
           
 

Uses of ResultSet in com.sun.labs.minion.engine
 

Methods in com.sun.labs.minion.engine that return ResultSet
 ResultSet SearchEngineImpl.allTerms(java.util.Collection<java.lang.String> terms, java.util.Collection<java.lang.String> fields)
          Builds a result set containing all of the given terms in any of the given fields.
 ResultSet SearchEngineImpl.anyTerms(java.util.Collection<java.lang.String> terms, java.util.Collection<java.lang.String> fields)
          Builds a result set of the documents containing any of the given terms in any of the given fields.
 ResultSet SearchEngineImpl.getResults(java.util.Collection<java.lang.String> keys)
          Gets a set of results corresponding to the document keys passed in.
 ResultSet SearchEngineImpl.getResults(java.util.Map<java.lang.String,java.lang.Float> keys)
          Gets a set of results corresponding to the document keys and scores passed in.
 ResultSet SearchEngineImpl.getSimilar(java.lang.String key, java.lang.String name)
          Gets a set of results ordered by similarity to the given document, calculated by computing the euclidean distance based on the feature vector stored in the given field.
 ResultSet SearchEngineImpl.getTrainingDocuments(java.lang.String className)
          Returns the set of documents that was used to train the classifier for the class with the provided class name.
 ResultSet SearchEngineImpl.search(Element el)
           
 ResultSet SearchEngineImpl.search(Element el, java.lang.String sortOrder)
           
 ResultSet SearchEngineImpl.search(java.lang.String query)
          Runs a query against the index, returning a set of results.
 ResultSet SearchEngineImpl.search(java.lang.String query, java.lang.String sortOrder)
          Runs a query against the index, returning a set of results.
 ResultSet SearchEngineImpl.search(java.lang.String query, java.lang.String sortOrder, int defaultOperator, int grammar)
          Runs a query against the index, returning a set of results.
 

Methods in com.sun.labs.minion.engine with parameters of type ResultSet
 void SearchEngineImpl.trainClass(ResultSet results, java.lang.String className, java.lang.String fieldName)
           
 void SearchEngineImpl.trainClass(ResultSet results, java.lang.String className, java.lang.String fieldName, Progress p)
           
 void SearchEngineImpl.trainClass(ResultSet results, java.lang.String className, java.lang.String fieldName, java.lang.String fromField)
           
 void SearchEngineImpl.trainClass(ResultSet results, java.lang.String className, java.lang.String fieldName, java.lang.String fromField, Progress progress)
          Generates a classifier based on the documents in the provided result set.
 

Uses of ResultSet in com.sun.labs.minion.indexer.partition
 

Methods in com.sun.labs.minion.indexer.partition that return ResultSet
 ResultSet PartitionManager.getSimilar(java.lang.String key, java.lang.String name)
          Gets a set of results ordered by similarity to the given document, calculated by computing the euclidean distance based on the feature vector stored in the given field.
 

Uses of ResultSet in com.sun.labs.minion.lexmorph.disambiguation
 

Methods in com.sun.labs.minion.lexmorph.disambiguation with parameters of type ResultSet
protected  void Unsupervised.init(ResultSet rs, java.lang.String term, java.lang.String field, int maxContextFeat, int maxTotalFeat, int maxContexts)
           
 

Constructors in com.sun.labs.minion.lexmorph.disambiguation with parameters of type ResultSet
Unsupervised(ResultSet rs, java.lang.String term, int maxContextFeat, int maxTotalFeat, int maxContexts)
           
 

Uses of ResultSet in com.sun.labs.minion.retrieval
 

Classes in com.sun.labs.minion.retrieval that implement ResultSet
 class ResultSetImpl
          An implementation of the results set interface.
 

Fields in com.sun.labs.minion.retrieval declared as ResultSet
protected  ResultSet ResultImpl.set
          The set of results to which this result belongs.
 

Methods in com.sun.labs.minion.retrieval that return ResultSet
 ResultSet ResultSetImpl.difference(ResultSet rs)
           
 ResultSet FieldEvaluator.eval(SearchEngine e)
          Evaluates the parametric query against the data in an engine.
 ResultSet FieldEvaluator.eval(SearchEngine e, java.lang.String sortSpec)
          Evaluates the parametric query against the data in an engine.
 ResultSet CompositeDocumentVectorImpl.findSimilar()
          Finds similar documents to this one.
 ResultSet DocumentVectorImpl.findSimilar()
          Finds similar documents to this one.
 ResultSet CompositeDocumentVectorImpl.findSimilar(java.lang.String sortOrder)
           
 ResultSet DocumentVectorImpl.findSimilar(java.lang.String sortOrder)
           
 ResultSet CompositeDocumentVectorImpl.findSimilar(java.lang.String sortOrder, double skimPercent)
          Finds documents that are similar to this one.
 ResultSet DocumentVectorImpl.findSimilar(java.lang.String sortOrder, double skimPercent)
          Finds similar documents to this one.
 ResultSet ResultSetImpl.intersect(ResultSet rs)
           
 ResultSet ResultSetImpl.union(ResultSet rs)
           
 ResultSet ResultSetImpl.weight(float w)
           
 

Methods in com.sun.labs.minion.retrieval with parameters of type ResultSet
 ResultSet ResultSetImpl.difference(ResultSet rs)
           
protected  void ResultImpl.init(ResultSet set, ArrayGroup ag, SortSpec sortSpec, int doc, float score)
          Initializes the members of this result.
 ResultSet ResultSetImpl.intersect(ResultSet rs)
           
 ResultSet ResultSetImpl.union(ResultSet rs)
           
 

Constructors in com.sun.labs.minion.retrieval with parameters of type ResultSet
ResultImpl(ResultSet set, ArrayGroup ag, SortSpec sortSpec, int doc, float score)
          Creates a search result.
 

Uses of ResultSet in com.sun.labs.minion.test
 

Methods in com.sun.labs.minion.test that return ResultSet
 ResultSet CrossIndexDV.findSim(java.lang.String key, boolean findDoc)
           
 

Methods in com.sun.labs.minion.test with parameters of type ResultSet
 void QueryTest.displayResults(ResultSet set)
           
 void QueryTest.displayResults(java.lang.String prefix, ResultSet set)
          Displays the top n results from a set of results.