Uses of Class
gate.creole.ir.IndexException

Packages that use IndexException
gate.creole.ir   
gate.creole.ir.lucene   
 

Uses of IndexException in gate.creole.ir
 

Methods in gate.creole.ir that throw IndexException
 void IndexManager.createIndex()
          Creates index directory and indexing all documents in the corpus.
 void IndexManager.optimizeIndex()
          Optimize the existing index
 void IndexManager.deleteIndex()
          Delete all index files and directories in index location.
 void IndexManager.sync(List added, List removed, List changed)
          Reindexing changed documents, removing removed documents and add to the index new corpus documents.
 QueryResultList Search.search(String query)
          Search in corpus with this query.
 QueryResultList Search.search(String query, int limit)
          Search in corpus with this query.
 QueryResultList Search.search(String query, List fieldNames)
          Search in corpus with this query.
 QueryResultList Search.search(String query, int limit, List fieldNames)
          Search in corpus with this query.
 void TestIndex.testIndex_01()
          Create new index.
 void TestIndex.testIndex_02()
          Optimize existing index.
 void TestIndex.testIndex_10()
          Search in existing index.
 void TestIndex.testIndex_101()
          Delete index.
 

Uses of IndexException in gate.creole.ir.lucene
 

Methods in gate.creole.ir.lucene that throw IndexException
 void LuceneIndexManager.createIndex()
          Creates index directory and indexing all documents in the corpus.
 void LuceneIndexManager.optimizeIndex()
          Optimize existing index.
 void LuceneIndexManager.deleteIndex()
          Delete index.
 void LuceneIndexManager.sync(List added, List removedIDs, List changed)
          Reindexing changed documents, removing removed documents and add to the index new corpus documents.
 QueryResultList LuceneSearch.search(String query)
          Search in corpus with this query.
 QueryResultList LuceneSearch.search(String query, int limit)
          Search in corpus with this query.
 QueryResultList LuceneSearch.search(String query, List fieldNames)
          Search in corpus with this query.
 QueryResultList LuceneSearch.search(String query, int limit, List fieldNames)
          Search in corpus with this query.