Uses of Class
com.sun.labs.minion.FieldValue

Packages that use FieldValue
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.engine Provides implementations for some of the end-user interfaces. 
com.sun.labs.minion.indexer.dictionary Provides the classes that implement the dictionaries used by the indexer and the retrieval engine. 
com.sun.labs.minion.indexer.partition Provides the classes that implement the partitions of the indexer. 
 

Uses of FieldValue in com.sun.labs.minion
 

Methods in com.sun.labs.minion that return types with arguments of type FieldValue
 java.util.SortedSet<FieldValue> SearchEngine.getMatching(java.lang.String field, java.lang.String pattern)
          Gets the values for the given field that match the given pattern.
 

Methods in com.sun.labs.minion with parameters of type FieldValue
 int FieldValue.compareTo(FieldValue o)
          Compares one field value to another.
 

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

Methods in com.sun.labs.minion.classification that return types with arguments of type FieldValue
 java.util.List<FieldValue> ClassifierManager.findSimilar(java.lang.String cname, int n)
          Find classifiers that are similar to the named classifier.
 

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

Methods in com.sun.labs.minion.engine that return types with arguments of type FieldValue
 java.util.SortedSet<FieldValue> SearchEngineImpl.getMatching(java.lang.String field, java.lang.String pattern)
          Gets the values for the given field that match the given pattern.
 java.util.List<FieldValue> SearchEngineImpl.getSimilarClassifiers(java.lang.String cname, int n)
           
 

Uses of FieldValue in com.sun.labs.minion.indexer.dictionary
 

Methods in com.sun.labs.minion.indexer.dictionary that return types with arguments of type FieldValue
 java.util.SortedSet<FieldValue> BasicField.getMatching(java.lang.String pattern)
           
 java.util.SortedSet<FieldValue> DiskFieldStore.getMatching(java.lang.String field, java.lang.String pattern)
          Gets the values for the given field that match the given pattern.
 

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

Methods in com.sun.labs.minion.indexer.partition that return types with arguments of type FieldValue
 java.util.SortedSet<FieldValue> PartitionManager.getMatching(java.lang.String field, java.lang.String pattern)
          Gets the values for the given field that match the given pattern.