Class RDBMSDocument
- java.lang.Object
-
- net.ontopia.infoset.fulltext.impl.rdbms.RDBMSDocument
-
- All Implemented Interfaces:
DocumentIF
public class RDBMSDocument extends Object implements DocumentIF
INTERNAL: RDBMS DocumentIF class implementation.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addField(FieldIF field)
INTERNAL: Adds the given field to the document.FieldIF
getField(String name)
INTERNAL: Returns the field with the specified name.Collection<FieldIF>
getFields()
INTERNAL: Returns all the fields of this document.float
getScore()
void
removeField(FieldIF field)
INTERNAL: Removes the given field from the document.String
toString()
-
-
-
Method Detail
-
getScore
public float getScore()
-
getField
public FieldIF getField(String name)
Description copied from interface:DocumentIF
INTERNAL: Returns the field with the specified name.- Specified by:
getField
in interfaceDocumentIF
-
getFields
public Collection<FieldIF> getFields()
Description copied from interface:DocumentIF
INTERNAL: Returns all the fields of this document.- Specified by:
getFields
in interfaceDocumentIF
- Returns:
- A collection of FieldIF objects.
-
addField
public void addField(FieldIF field)
Description copied from interface:DocumentIF
INTERNAL: Adds the given field to the document.- Specified by:
addField
in interfaceDocumentIF
-
removeField
public void removeField(FieldIF field)
Description copied from interface:DocumentIF
INTERNAL: Removes the given field from the document.- Specified by:
removeField
in interfaceDocumentIF
-
-