Uses of Class
gov.nist.nlpir.irf.feature.ProxyIndexingFeature

Packages that use ProxyIndexingFeature
gov.nist.nlpir.irf.feature classes that model indexing features of various types 
gov.nist.nlpir.irf.index classes and interfaces that support indexes - dictionaries of indexing features by source document or document data element 
gov.nist.nlpir.irf.index.braf classes and interfaces that support indexes implemented using buffered random access files 
gov.nist.nlpir.irf.proxy classes that model what is common to all proxies and their management. 
gov.nist.nlpir.irf.result classes that model the result of a search as a hierarchy of nested results corresponding to the structure of the query 
 

Uses of ProxyIndexingFeature in gov.nist.nlpir.irf.feature
 

Subclasses of ProxyIndexingFeature in gov.nist.nlpir.irf.feature
 class ProxyIdxFeatWordInString
          Proxy class for Indexing Features referring to a word in a string.
 class ProxyIdxFeatWordInText
          Proxy class for Indexing Features referring to a word in a text.
 

Uses of ProxyIndexingFeature in gov.nist.nlpir.irf.index
 

Methods in gov.nist.nlpir.irf.index with parameters of type ProxyIndexingFeature
 long ListPool.put(long linkOffset, ProxyIndexingFeature value)
          store an object which conforms to the Accessible interface.
 

Uses of ProxyIndexingFeature in gov.nist.nlpir.irf.index.braf
 

Methods in gov.nist.nlpir.irf.index.braf with parameters of type ProxyIndexingFeature
 void PersistentDualKeyContainer.put(java.lang.Object sourceKey, java.lang.Object featureKey, ProxyIndexingFeature proxyObject)
          Puts a ProxyIndexingFeature instance in the container.
 void LinkedListPool.put(gov.nist.nlpir.irf.handle.braf.FeatureListBrafHandle handle, ProxyIndexingFeature value)
          Stores an object which conforms to the ProxyIndexingFeature class.
 

Uses of ProxyIndexingFeature in gov.nist.nlpir.irf.proxy
 

Methods in gov.nist.nlpir.irf.proxy that return ProxyIndexingFeature
static ProxyIndexingFeature PersistentObjectManager.buildIF(BufferedRandomAccessFile braf)
          This method builds an IndexingFeature from the BufferedRandomAccessFile used.
 

Methods in gov.nist.nlpir.irf.proxy with parameters of type ProxyIndexingFeature
static void PersistentObjectManager.writeIF(ProxyIndexingFeature theProxy, BufferedRandomAccessFile braf)
          Writes the given proxy in the given file.
static int PersistentObjectManager.getIF_Type(ProxyIndexingFeature IF)
          This method is a perfect candidate for a general ObjectProvider class that would centralize them.
 

Uses of ProxyIndexingFeature in gov.nist.nlpir.irf.result
 

Fields in gov.nist.nlpir.irf.result declared as ProxyIndexingFeature
private  ProxyIndexingFeature BasicRetrievalResult.IF
          The indexing feature which is the basic result of the search.
 

Methods in gov.nist.nlpir.irf.result that return ProxyIndexingFeature
 ProxyIndexingFeature BasicRetrievalResult.getIndexingFeature()
          Retrieves the Indexing Feature.
 

Constructors in gov.nist.nlpir.irf.result with parameters of type ProxyIndexingFeature
BasicRetrievalResult.BasicRetrievalResult(ProxyIndexingFeature IF, double matchingDegree, double score)
          Creates a BasicRetrievalResult with the score and the degree given.
BasicRetrievalResult.BasicRetrievalResult(ProxyIndexingFeature IF)
          Creates a BasicRetrievalResult, but assumes the score and the matching degree are 0.