Uses of Interface
net.ontopia.infoset.fulltext.core.FieldIF
-
Packages that use FieldIF 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. -
-
Uses of FieldIF in net.ontopia.infoset.fulltext.core
Classes in net.ontopia.infoset.fulltext.core that implement FieldIF Modifier and Type Class Description class
GenericField
INTERNAL: A generic document field.Fields in net.ontopia.infoset.fulltext.core with type parameters of type FieldIF Modifier and Type Field Description protected Map<String,FieldIF>
GenericDocument. fields
Methods in net.ontopia.infoset.fulltext.core that return FieldIF Modifier and Type Method Description static FieldIF
GenericField. createKeywordField(String name, String value)
static FieldIF
GenericField. createTextField(String name, String value)
static FieldIF
GenericField. createUnstoredField(String name, Reader reader)
static FieldIF
GenericField. createUnstoredField(String name, String value)
FieldIF
DocumentIF. getField(String name)
INTERNAL: Returns the field with the specified name.FieldIF
GenericDocument. getField(String name)
Methods in net.ontopia.infoset.fulltext.core that return types with arguments of type FieldIF Modifier and Type Method Description Collection<FieldIF>
DocumentIF. getFields()
INTERNAL: Returns all the fields of this document.Collection<FieldIF>
GenericDocument. getFields()
Methods in net.ontopia.infoset.fulltext.core with parameters of type FieldIF Modifier and Type Method Description void
DocumentIF. addField(FieldIF field)
INTERNAL: Adds the given field to the document.void
GenericDocument. addField(FieldIF field)
void
DocumentIF. removeField(FieldIF field)
INTERNAL: Removes the given field from the document.void
GenericDocument. removeField(FieldIF field)
-
Uses of FieldIF in net.ontopia.infoset.fulltext.impl.lucene
Classes in net.ontopia.infoset.fulltext.impl.lucene that implement FieldIF Modifier and Type Class Description class
LuceneField
INTERNAL: FieldIF wrapper for Lucene's own internal field class.Methods in net.ontopia.infoset.fulltext.impl.lucene that return FieldIF Modifier and Type Method Description FieldIF
LuceneDocument. getField(String name)
Methods in net.ontopia.infoset.fulltext.impl.lucene that return types with arguments of type FieldIF Modifier and Type Method Description Collection<FieldIF>
LuceneDocument. getFields()
Methods in net.ontopia.infoset.fulltext.impl.lucene with parameters of type FieldIF Modifier and Type Method Description void
LuceneDocument. addField(FieldIF field)
protected org.apache.lucene.document.Field
LuceneIndexer. getField(FieldIF field)
protected org.apache.lucene.document.FieldType
LuceneIndexer. getFieldType(FieldIF field)
void
LuceneDocument. removeField(FieldIF field)
-
Uses of FieldIF in net.ontopia.infoset.fulltext.impl.rdbms
Classes in net.ontopia.infoset.fulltext.impl.rdbms that implement FieldIF Modifier and Type Class Description class
RDBMSField
INTERNAL: RDBMS FieldIF class implementation.Fields in net.ontopia.infoset.fulltext.impl.rdbms with type parameters of type FieldIF Modifier and Type Field Description protected Map<String,FieldIF>
RDBMSDocument. fields
Methods in net.ontopia.infoset.fulltext.impl.rdbms that return FieldIF Modifier and Type Method Description FieldIF
RDBMSDocument. getField(String name)
Methods in net.ontopia.infoset.fulltext.impl.rdbms that return types with arguments of type FieldIF Modifier and Type Method Description Collection<FieldIF>
RDBMSDocument. getFields()
Methods in net.ontopia.infoset.fulltext.impl.rdbms with parameters of type FieldIF Modifier and Type Method Description void
RDBMSDocument. addField(FieldIF field)
void
RDBMSDocument. removeField(FieldIF field)
-