Uses of Interface
net.ontopia.infoset.fulltext.core.DocumentIF
-
Packages that use DocumentIF Package Description net.ontopia.infoset.fulltext.core Interfaces for working with fulltext indexes.net.ontopia.infoset.fulltext.impl.lucene The Lucene fulltext integration.net.ontopia.infoset.fulltext.impl.rdbms The RDBMS fulltext integration.net.ontopia.infoset.fulltext.topicmaps Collection of classes for indexing topic maps. -
-
Uses of DocumentIF in net.ontopia.infoset.fulltext.core
Classes in net.ontopia.infoset.fulltext.core that implement DocumentIF Modifier and Type Class Description class
GenericDocument
INTERNAL: The default document implementation.Methods in net.ontopia.infoset.fulltext.core that return DocumentIF Modifier and Type Method Description DocumentIF
SearchResultIF. getDocument(int hit)
INTERNAL: Returns the document located at the given index.Methods in net.ontopia.infoset.fulltext.core with parameters of type DocumentIF Modifier and Type Method Description void
IndexerIF. index(DocumentIF document)
INTERNAL: Indexes the specified document.boolean
DocumentProcessorIF. needsProcessing(DocumentIF document)
INTERNAL: Can be used to figure out if it is necessary to process the document.void
DocumentProcessorIF. process(DocumentIF document)
INTERNAL: Processes the specified document. -
Uses of DocumentIF in net.ontopia.infoset.fulltext.impl.lucene
Classes in net.ontopia.infoset.fulltext.impl.lucene that implement DocumentIF Modifier and Type Class Description class
LuceneDocument
INTERNAL: DocumentIF wrapper for Lucene's own internal document class.Methods in net.ontopia.infoset.fulltext.impl.lucene that return DocumentIF Modifier and Type Method Description DocumentIF
LuceneSearchResult. getDocument(int hit)
Methods in net.ontopia.infoset.fulltext.impl.lucene with parameters of type DocumentIF Modifier and Type Method Description protected org.apache.lucene.document.Document
LuceneIndexer. getDocument(DocumentIF document)
void
LuceneIndexer. index(DocumentIF document)
-
Uses of DocumentIF in net.ontopia.infoset.fulltext.impl.rdbms
Classes in net.ontopia.infoset.fulltext.impl.rdbms that implement DocumentIF Modifier and Type Class Description class
RDBMSDocument
INTERNAL: RDBMS DocumentIF class implementation.Methods in net.ontopia.infoset.fulltext.impl.rdbms that return DocumentIF Modifier and Type Method Description DocumentIF
RDBMSSearchResult. getDocument(int hit)
-
Uses of DocumentIF in net.ontopia.infoset.fulltext.topicmaps
Classes in net.ontopia.infoset.fulltext.topicmaps that implement DocumentIF Modifier and Type Class Description class
TopicMapDocument
INTERNAL: A class that extends GenericDocument to add an appropriate toString implementation for topic map documents.Methods in net.ontopia.infoset.fulltext.topicmaps that return DocumentIF Modifier and Type Method Description protected DocumentIF
DefaultTopicMapDocumentGenerator. createDocument()
DocumentIF
DefaultTopicMapDocumentGenerator. generate(AssociationIF assoc)
DocumentIF
DefaultTopicMapDocumentGenerator. generate(AssociationRoleIF assocrl)
DocumentIF
DefaultTopicMapDocumentGenerator. generate(OccurrenceIF occur)
DocumentIF
DefaultTopicMapDocumentGenerator. generate(TopicIF topic)
DocumentIF
DefaultTopicMapDocumentGenerator. generate(TopicMapIF topicmap)
DocumentIF
DefaultTopicMapDocumentGenerator. generate(TopicNameIF basename)
DocumentIF
DefaultTopicMapDocumentGenerator. generate(VariantNameIF variant)
DocumentIF
TopicMapDocumentGeneratorIF. generate(AssociationIF assoc)
INTERNAL: Generate a document for the given association.DocumentIF
TopicMapDocumentGeneratorIF. generate(AssociationRoleIF assocrl)
INTERNAL: Generate a document for the given association role.DocumentIF
TopicMapDocumentGeneratorIF. generate(OccurrenceIF occurs)
INTERNAL: Generate a document for the given occurrence.DocumentIF
TopicMapDocumentGeneratorIF. generate(TopicIF topic)
INTERNAL: Generate a document for the given topic.DocumentIF
TopicMapDocumentGeneratorIF. generate(TopicMapIF topicmap)
INTERNAL: Generate a document for the given topic map.DocumentIF
TopicMapDocumentGeneratorIF. generate(TopicNameIF basename)
INTERNAL: Generate a document for the given basename.DocumentIF
TopicMapDocumentGeneratorIF. generate(VariantNameIF variant)
INTERNAL: Generate a document for the given variant name.Methods in net.ontopia.infoset.fulltext.topicmaps with parameters of type DocumentIF Modifier and Type Method Description protected void
DefaultTopicMapDocumentGenerator. addContentField(DocumentIF doc, String value)
protected void
DefaultTopicMapDocumentGenerator. addLocatorField(DocumentIF doc, LocatorIF locator)
protected void
DefaultTopicMapDocumentGenerator. addObjectFields(DocumentIF doc, TMObjectIF tmobject, String klass)
-