|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.compass.core.converter.xsem.SimpleXmlValueConverter
public class SimpleXmlValueConverter
A simple converter which uses the String value of XmlObject.getValue().
It is the deafult converter associated with the value converter of XmlPropertyMapping if none
is specified. It can also be used as a base class for more specialized converters.
| Constructor Summary | |
|---|---|
SimpleXmlValueConverter()
|
|
| Method Summary | |
|---|---|
protected void |
doSetBoost(Property property,
Object root,
ResourcePropertyMapping resourcePropertyMapping,
MarshallingContext context)
A simple extension point that allows to set the boost value for the created Property. |
protected String |
getNullValue(ResourcePropertyMapping resourcePropertyMapping,
MarshallingContext context)
If the converter handle nulls, the value that will be stored in the search engine for null values (during the marshall process). |
protected boolean |
handleNulls(ResourcePropertyMapping resourcePropertyMapping,
MarshallingContext context)
Should the converter handle nulls? |
boolean |
marshall(Resource resource,
Object root,
Mapping mapping,
MarshallingContext context)
Marshall the given Object to the given Resource. |
String |
toString(XmlObject xmlObject,
ResourcePropertyMapping resourcePropertyMapping)
Default implementation of toString, simply calls XmlObject.getValue(). |
Object |
unmarshall(Resource resource,
Mapping mapping,
MarshallingContext context)
Not supported operation. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public SimpleXmlValueConverter()
| Method Detail |
|---|
public boolean marshall(Resource resource,
Object root,
Mapping mapping,
MarshallingContext context)
throws ConversionException
ConverterObject to the given Resource. Will use
the mapping definition as to how to marshall the object.
Returns true if data was saved in the index, and it can
be read as well (i.e. stored).
marshall in interface Converterresource - The resource to marhsall the object toroot - The Object to marshall to the resourcemapping - The mapping definition of how to marshall the Object to the resorucecontext - The context for the current marhslling process
true if data was saved in the the index that can be read.
ConversionException
protected boolean handleNulls(ResourcePropertyMapping resourcePropertyMapping,
MarshallingContext context)
Should the converter handle nulls? Handling nulls means should the
converter process nulls or not. Usually the converter will not
persist null values, but sometimes it might be needed
(MarshallingContext.handleNulls()).
If a specific null value is configured with the ResourcePropertyMapping
then the converter will always handle nulls and write it.
context - The marshalling context
true if the converter should handle null values
protected String getNullValue(ResourcePropertyMapping resourcePropertyMapping,
MarshallingContext context)
null values (during the marshall process). Uses
ResourcePropertyMapping.getNullValue().
resourcePropertyMapping - The resource proeprty mapping to get the null value fromcontext - The marshalling context
nulls.
protected void doSetBoost(Property property,
Object root,
ResourcePropertyMapping resourcePropertyMapping,
MarshallingContext context)
throws ConversionException
Property.
The default implemenation uses the statically defined boost value in the mapping definition
(ResourcePropertyMapping.getBoost()) to set the boost level
using Property.setBoost(float)
property - The property to set the boost onroot - The object that is marshalled into a propertyresourcePropertyMapping - The Resource Property Mapping definition
ConversionException
public String toString(XmlObject xmlObject,
ResourcePropertyMapping resourcePropertyMapping)
XmlObject.getValue().
public Object unmarshall(Resource resource,
Mapping mapping,
MarshallingContext context)
throws ConversionException
unmarshall in interface Converterresource - The resource to unmarshall into an Objectmapping - The mapping definition of how to unmarshall the Resource into an Objectcontext - The context for the current marshalling process
ConversionException
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||