Class BlobValueHandler
- java.lang.Object
 - 
- org.apache.openjpa.jdbc.meta.strats.AbstractValueHandler
 - 
- org.apache.openjpa.jdbc.meta.strats.BlobValueHandler
 
 
 
- 
- All Implemented Interfaces:
 Serializable,ValueHandler
public class BlobValueHandler extends AbstractValueHandler
Handler for blob values.- See Also:
 - Serialized Form
 
 
- 
- 
Constructor Summary
Constructors Constructor Description BlobValueHandler() 
- 
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static BlobValueHandlergetInstance()Singleton instance.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.Column[]map(ValueMapping vm, DBIdentifier name, ColumnIO io, boolean adapt)- 
Methods inherited from class org.apache.openjpa.jdbc.meta.strats.AbstractValueHandler
getResultArgument, isVersionable, objectValueRequiresLoad, toDataStoreValue, toObjectValue, toObjectValue 
 - 
 
 - 
 
- 
- 
Method Detail
- 
getInstance
public static BlobValueHandler getInstance()
Singleton instance. 
- 
map
public Column[] map(ValueMapping vm, String name, ColumnIO io, boolean adapt)
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
public Column[] map(ValueMapping vm, DBIdentifier name, ColumnIO io, boolean adapt)
 
 - 
 
 -