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 classGenericFieldINTERNAL: 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. fieldsMethods in net.ontopia.infoset.fulltext.core that return FieldIF Modifier and Type Method Description static FieldIFGenericField. createKeywordField(String name, String value)static FieldIFGenericField. createTextField(String name, String value)static FieldIFGenericField. createUnstoredField(String name, Reader reader)static FieldIFGenericField. createUnstoredField(String name, String value)FieldIFDocumentIF. getField(String name)INTERNAL: Returns the field with the specified name.FieldIFGenericDocument. 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 voidDocumentIF. addField(FieldIF field)INTERNAL: Adds the given field to the document.voidGenericDocument. addField(FieldIF field)voidDocumentIF. removeField(FieldIF field)INTERNAL: Removes the given field from the document.voidGenericDocument. 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 classLuceneFieldINTERNAL: 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 FieldIFLuceneDocument. 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 voidLuceneDocument. addField(FieldIF field)protected org.apache.lucene.document.FieldLuceneIndexer. getField(FieldIF field)protected org.apache.lucene.document.FieldTypeLuceneIndexer. getFieldType(FieldIF field)voidLuceneDocument. 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 classRDBMSFieldINTERNAL: 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. fieldsMethods in net.ontopia.infoset.fulltext.impl.rdbms that return FieldIF Modifier and Type Method Description FieldIFRDBMSDocument. 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 voidRDBMSDocument. addField(FieldIF field)voidRDBMSDocument. removeField(FieldIF field)
-