Class EnumValueHandler
- java.lang.Object
 - 
- org.apache.openjpa.jdbc.meta.strats.AbstractValueHandler
 - 
- org.apache.openjpa.jdbc.meta.strats.EnumValueHandler
 
 
 
- 
- All Implemented Interfaces:
 Serializable,ValueHandler
public class EnumValueHandler extends AbstractValueHandler
Value handler for JDK1.5 enum field types.- See Also:
 - Serialized Form
 
 
- 
- 
Constructor Summary
Constructors Constructor Description EnumValueHandler() 
- 
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description booleangetStoreOrdinal()Whether to store the enum value as its ordinal.booleanisVersionable(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)Deprecated.Column[]map(ValueMapping vm, DBIdentifier name, ColumnIO io, boolean adapt)voidsetStoreOrdinal(boolean ordinal)Whether to store the enum value as its ordinal.ObjecttoDataStoreValue(ValueMapping vm, Object val, JDBCStore store)Translate the given value to its datastore equivalent.ObjecttoObjectValue(ValueMapping vm, Object val)Translate the given datastore value into its Java equivalent.- 
Methods inherited from class org.apache.openjpa.jdbc.meta.strats.AbstractValueHandler
getResultArgument, objectValueRequiresLoad, toObjectValue 
 - 
 
 - 
 
- 
- 
Method Detail
- 
getStoreOrdinal
public boolean getStoreOrdinal()
Whether to store the enum value as its ordinal. 
- 
setStoreOrdinal
public void setStoreOrdinal(boolean ordinal)
Whether to store the enum value as its ordinal. 
- 
map
@Deprecated public Column[] map(ValueMapping vm, String name, ColumnIO io, boolean adapt)
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
public Column[] map(ValueMapping vm, DBIdentifier name, ColumnIO io, boolean adapt)
 
- 
isVersionable
public boolean isVersionable(ValueMapping vm)
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
public Object toDataStoreValue(ValueMapping vm, Object val, JDBCStore store)
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
 
- 
toObjectValue
public Object toObjectValue(ValueMapping vm, Object val)
Description copied from interface:ValueHandlerTranslate 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 ifValueHandler.objectValueRequiresLoad(org.apache.openjpa.jdbc.meta.ValueMapping)returns false.- Specified by:
 toObjectValuein interfaceValueHandler- Overrides:
 toObjectValuein classAbstractValueHandler
 
 - 
 
 -