Package javax.help.search
Class IndexBuilder
- java.lang.Object
-
- javax.help.search.IndexBuilder
-
public abstract class IndexBuilder extends java.lang.ObjectAbstract base class that builds an index for a search database.
-
-
Field Summary
Fields Modifier and Type Field Description protected java.lang.StringindexDir
-
Constructor Summary
Constructors Constructor Description IndexBuilder(java.lang.String indexDir)Builds an index at indexDir.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract voidclose()Closes the index.abstract voidcloseDocument()Closes the document.abstract java.util.EnumerationgetStopWords()Returns the list of stopwords for an index.abstract voidopenDocument(java.lang.String name)Opens a document to store information.abstract voidstoreLocation(java.lang.String text, int position)Stores a concept at a given position.abstract voidstoreStopWords(java.util.Enumeration stopWords)Sets the stopwords in an index.abstract voidstoreTitle(java.lang.String title)Stores the title for the document.
-
-
-
Method Detail
-
close
public abstract void close() throws java.lang.ExceptionCloses the index.- Throws:
java.lang.Exception
-
storeStopWords
public abstract void storeStopWords(java.util.Enumeration stopWords)
Sets the stopwords in an index. If the stopwords are already defined for an index, the stop words are merged with the existing set of stopwords.
-
getStopWords
public abstract java.util.Enumeration getStopWords()
Returns the list of stopwords for an index.
-
openDocument
public abstract void openDocument(java.lang.String name) throws java.lang.ExceptionOpens a document to store information.- Throws:
java.lang.Exception
-
closeDocument
public abstract void closeDocument() throws java.lang.ExceptionCloses the document. This prevents any additional information from being stored.- Throws:
java.lang.Exception
-
storeLocation
public abstract void storeLocation(java.lang.String text, int position) throws java.lang.ExceptionStores a concept at a given position.- Throws:
java.lang.Exception
-
storeTitle
public abstract void storeTitle(java.lang.String title) throws java.lang.ExceptionStores the title for the document.- Throws:
java.lang.Exception
-
-