Class ImmutableValueHandler
java.lang.Object
org.apache.openjpa.jdbc.meta.strats.AbstractValueHandler
org.apache.openjpa.jdbc.meta.strats.ImmutableValueHandler
- All Implemented Interfaces:
Serializable,ValueHandler
Handler for simple type and string values.
- See Also:
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic ImmutableValueHandlerSingleton instance.booleanReturn whether the values managed by this handler can be used in state image versioning.Column[]map(ValueMapping vm, String name, ColumnIO io, boolean adapt) Deprecated.Column[]map(ValueMapping vm, DBIdentifier name, ColumnIO io, boolean adapt) toDataStoreValue(ValueMapping vm, Object val, JDBCStore store) Translate the given value to its datastore equivalent.Methods inherited from class org.apache.openjpa.jdbc.meta.strats.AbstractValueHandler
getResultArgument, objectValueRequiresLoad, toObjectValue, toObjectValue
-
Constructor Details
-
ImmutableValueHandler
public ImmutableValueHandler()
-
-
Method Details
-
getInstance
Singleton instance. -
map
Deprecated.Description copied from interface:ValueHandlerMap the given value and return all mapped columns, or simply return an array of unmapped default columns. The columns should have at least theirNameandJavaTypeproperties set.name- use as a base to form column name(s); the column names of unmapped columns will automatically be made to fit database limitationsio- I/O information about mapped columns; you do not have to set this information if returning templatesadapt- whether to adapt the mapping or schema
-
map
-
isVersionable
Description copied from interface:ValueHandlerReturn whether the values managed by this handler can be used in state image versioning.- Specified by:
isVersionablein interfaceValueHandler- Overrides:
isVersionablein classAbstractValueHandler
-
toDataStoreValue
Description copied from interface:ValueHandlerTranslate the given value to its datastore equivalent. If this value occupies multiple columns, return an object array with one element per column. For relation id columns, return the state manager the column depends on.- Specified by:
toDataStoreValuein interfaceValueHandler- Overrides:
toDataStoreValuein classAbstractValueHandler
-