Package org.apache.cayenne.access.types
Class ShortType
java.lang.Object
org.apache.cayenne.access.types.ShortType
- All Implemented Interfaces:
- ExtendedType<Short>
public class ShortType extends Object implements ExtendedType<Short>
Handles 
java.lang.Short type mapping. Can be configured to recast
 java.lang.Short to java.lang.Integer when binding values to PreparedStatement. This is
 a workaround for bugs in certain drivers. Drivers that are proven to have issues with
 short values are Sybase and Oracle (Mac OS X only).- Since:
- 1.0.2
- 
Field SummaryFields Modifier and Type Field Description protected booleanwidenShortsFields inherited from interface org.apache.cayenne.access.types.ExtendedTypeTRIM_VALUES_THRESHOLD
- 
Constructor SummaryConstructors Constructor Description ShortType(boolean widenShorts)
- 
Method SummaryModifier and Type Method Description StringgetClassName()Returns a full name of Java class that this ExtendedType supports.ShortmaterializeObject(CallableStatement st, int index, int type)Reads an object from a stored procedure OUT parameter, converting it to class returned by 'getClassName' method.ShortmaterializeObject(ResultSet rs, int index, int type)Reads an object from JDBC ResultSet column, converting it to class returned by 'getClassName' method.voidsetJdbcObject(PreparedStatement statement, Short value, int pos, int type, int precision)Initializes a single parameter of a PreparedStatement with object value.StringtoString(Short value)Converts value of the supported type to a human-readable String representation.
- 
Field Details- 
widenShortsprotected boolean widenShorts
 
- 
- 
Constructor Details- 
ShortTypepublic ShortType(boolean widenShorts)
 
- 
- 
Method Details- 
getClassNameDescription copied from interface:ExtendedTypeReturns a full name of Java class that this ExtendedType supports.- Specified by:
- getClassNamein interface- ExtendedType<Short>
 
- 
materializeObjectDescription copied from interface:ExtendedTypeReads an object from JDBC ResultSet column, converting it to class returned by 'getClassName' method.- Specified by:
- materializeObjectin interface- ExtendedType<Short>
- Throws:
- Exception- if read error occurred, or an object can't be converted to a target Java class.
 
- 
materializeObjectDescription copied from interface:ExtendedTypeReads an object from a stored procedure OUT parameter, converting it to class returned by 'getClassName' method.- Specified by:
- materializeObjectin interface- ExtendedType<Short>
- Throws:
- Exception- if read error occurred, or an object can't be converted to a target Java class.
 
- 
setJdbcObjectpublic void setJdbcObject(PreparedStatement statement, Short value, int pos, int type, int precision) throws ExceptionDescription copied from interface:ExtendedTypeInitializes a single parameter of a PreparedStatement with object value.- Specified by:
- setJdbcObjectin interface- ExtendedType<Short>
- Throws:
- Exception
 
- 
toStringDescription copied from interface:ExtendedTypeConverts value of the supported type to a human-readable String representation.- Specified by:
- toStringin interface- ExtendedType<Short>
- Parameters:
- value- a value to convert to String.
 
 
-