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.
|
Modifier and Type | Class and Description |
---|---|
class |
GenericField
INTERNAL: A generic document field.
|
Modifier and Type | Field and Description |
---|---|
protected Map<String,FieldIF> |
GenericDocument.fields |
Modifier and Type | Method and 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 |
GenericDocument.getField(String name) |
FieldIF |
DocumentIF.getField(String name)
INTERNAL: Returns the field with the specified name.
|
Modifier and Type | Method and Description |
---|---|
Collection<FieldIF> |
GenericDocument.getFields() |
Collection<FieldIF> |
DocumentIF.getFields()
INTERNAL: Returns all the fields of this document.
|
Modifier and Type | Method and Description |
---|---|
void |
GenericDocument.addField(FieldIF field) |
void |
DocumentIF.addField(FieldIF field)
INTERNAL: Adds the given field to the document.
|
void |
GenericDocument.removeField(FieldIF field) |
void |
DocumentIF.removeField(FieldIF field)
INTERNAL: Removes the given field from the document.
|
Modifier and Type | Class and Description |
---|---|
class |
LuceneField
INTERNAL: FieldIF wrapper for Lucene's own internal field class.
|
Modifier and Type | Method and Description |
---|---|
FieldIF |
LuceneDocument.getField(String name) |
Modifier and Type | Method and Description |
---|---|
Collection<FieldIF> |
LuceneDocument.getFields() |
Modifier and Type | Method and 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) |
Modifier and Type | Class and Description |
---|---|
class |
RDBMSField
INTERNAL: RDBMS FieldIF class implementation.
|
Modifier and Type | Field and Description |
---|---|
protected Map<String,FieldIF> |
RDBMSDocument.fields |
Modifier and Type | Method and Description |
---|---|
FieldIF |
RDBMSDocument.getField(String name) |
Modifier and Type | Method and Description |
---|---|
Collection<FieldIF> |
RDBMSDocument.getFields() |
Modifier and Type | Method and Description |
---|---|
void |
RDBMSDocument.addField(FieldIF field) |
void |
RDBMSDocument.removeField(FieldIF field) |