Package org.apache.openjpa.jdbc.meta
Interface ValueHandler
- All Superinterfaces:
Serializable
- All Known Implementing Classes:
AbstractValueHandler
,BlobValueHandler
,ByteArrayValueHandler
,CharArrayStreamValueHandler
,CharArrayValueHandler
,ClobValueHandler
,ElementEmbedValueHandler
,EmbedValueHandler
,EnumValueHandler
,ImmutableValueHandler
,ObjectIdValueHandler
,UntypedPCValueHandler
,XMLValueHandler
Maps a value to a relational schema. Value handler are stateless.
- Since:
- 0.4.0
- Author:
- Abe White
-
Method Summary
Modifier and TypeMethodDescriptionReturn the argument to pass to the result set when loading data viaResult.getObject(java.lang.Object, int, java.lang.Object)
, or null if none.boolean
Return whether the values managed by this handler can be used in state image versioning.Column[]
map
(ValueMapping vm, String name, ColumnIO io, boolean adapt) Map the given value and return all mapped columns, or simply return an array of unmapped default columns.boolean
Return whether this handler potentially must load extra data to extract the object value from its datastore representation.toDataStoreValue
(ValueMapping vm, Object val, JDBCStore store) Translate the given value to its datastore equivalent.toObjectValue
(ValueMapping vm, Object val) Translate the given datastore value into its Java equivalent.toObjectValue
(ValueMapping vm, Object val, OpenJPAStateManager sm, JDBCStore store, JDBCFetchConfiguration fetch) Translate the given datastore value into its Java equivalent.
-
Method Details
-
map
Map the given value and return all mapped columns, or simply return an array of unmapped default columns. The columns should have at least theirName
andJavaType
properties set.- Parameters:
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
-
isVersionable
Return whether the values managed by this handler can be used in state image versioning. -
objectValueRequiresLoad
Return whether this handler potentially must load extra data to extract the object value from its datastore representation. -
getResultArgument
Return the argument to pass to the result set when loading data viaResult.getObject(java.lang.Object, int, java.lang.Object)
, or null if none. If this value occupies multiple columns, return an array with one element per column. You may return null if all array elements would be null. -
toDataStoreValue
Translate 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. -
toObjectValue
Translate the given datastore value into its Java equivalent. If the value occupies multiple columns, the given object will be an object array with one entry per column. This method is only called ifobjectValueRequiresLoad(org.apache.openjpa.jdbc.meta.ValueMapping)
returns false. -
toObjectValue
Object toObjectValue(ValueMapping vm, Object val, OpenJPAStateManager sm, JDBCStore store, JDBCFetchConfiguration fetch) throws SQLException Translate the given datastore value into its Java equivalent. If the value occupies multiple columns, the given object will be an object array with one entry per column. This method is only called ifobjectValueRequiresLoad(org.apache.openjpa.jdbc.meta.ValueMapping)
returns true.- Parameters:
sm
- the state manager that owns the value; may be null if loading a projection- Throws:
SQLException
-