| org.compass.core.ResourceFactory
All known Subclasses: org.compass.core.lucene.LuceneResourceFactory,
ResourceFactory | public interface ResourceFactory (Code) | | author: kimchy |
Method Summary | |
Property | createProperty(String value, ResourcePropertyMapping mapping) | Property | createProperty(String value, ResourcePropertyMapping mapping, Property.Store store, Property.Index index) | Property | createProperty(String name, String value, ResourcePropertyMapping mapping) | Property | createProperty(String name, String value, Property.Store store, Property.Index index) | Property | createProperty(String name, String value, Property.Store store, Property.Index index, Property.TermVector termVector) Creates a Property that is used with the actual Search Engine. | Property | createProperty(String name, Reader value) Creates a property (TEXT type) for the specified reader. | Property | createProperty(String name, Reader value, Property.TermVector termVector) Creates a property (indexed, and not stored) for the specified reader. | Property | createProperty(String name, byte[] value, Property.Store store) Creates a binary property. | Resource | createResource(String alias) Creates a resource, that is used with the actual Search Engine
implementation. | String | getNullValue() Returns a null value that represents no entry in the search engine. | boolean | isNullValue(String value) Returns true if the value is marked as a null value. |
getNullValue | String getNullValue()(Code) | | Returns a null value that represents no entry in the search engine.
Usefull when the system needs to store an actual data entry, but for it
to represent a business null value.
|
isNullValue | boolean isNullValue(String value)(Code) | | Returns true if the value is marked as a null value.
|
|
|