public interface ValueHandler extends Serializable
Modifier and Type | Method and Description |
---|---|
Object |
getResultArgument(ValueMapping vm)
Return the argument to pass to the result set when loading data
via
Result.getObject(java.lang.Object, int, java.lang.Object) , or null if none. |
boolean |
isVersionable(ValueMapping vm)
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 |
objectValueRequiresLoad(ValueMapping vm)
Return whether this handler potentially must load extra data to extract
the object value from its datastore representation.
|
Object |
toDataStoreValue(ValueMapping vm,
Object val,
JDBCStore store)
Translate the given value to its datastore equivalent.
|
Object |
toObjectValue(ValueMapping vm,
Object val)
Translate the given datastore value into its Java equivalent.
|
Object |
toObjectValue(ValueMapping vm,
Object val,
OpenJPAStateManager sm,
JDBCStore store,
JDBCFetchConfiguration fetch)
Translate the given datastore value into its Java equivalent.
|
Column[] map(ValueMapping vm, String name, ColumnIO io, boolean adapt)
Name
and JavaType
properties 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 schemaboolean isVersionable(ValueMapping vm)
boolean objectValueRequiresLoad(ValueMapping vm)
Object getResultArgument(ValueMapping vm)
Result.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.Object toDataStoreValue(ValueMapping vm, Object val, JDBCStore store)
Object toObjectValue(ValueMapping vm, Object val)
objectValueRequiresLoad(org.apache.openjpa.jdbc.meta.ValueMapping)
returns false.Object toObjectValue(ValueMapping vm, Object val, OpenJPAStateManager sm, JDBCStore store, JDBCFetchConfiguration fetch) throws SQLException
objectValueRequiresLoad(org.apache.openjpa.jdbc.meta.ValueMapping)
returns true.sm
- the state manager that owns the value; may be null if
loading a projectionSQLException
Copyright © 2006–2018 Apache Software Foundation. All rights reserved.