Package org.apache.cayenne.access.types
Class CalendarType<T extends Calendar>
java.lang.Object
org.apache.cayenne.access.types.CalendarType<T>
- All Implemented Interfaces:
- ExtendedType<Calendar>
public class CalendarType<T extends Calendar> extends Object implements ExtendedType<Calendar>
ExtendedType that handles 
Calendar fields.- Since:
- 3.0
- 
Field SummaryFields Modifier and Type Field Description protected Class<T>calendarClassFields inherited from interface org.apache.cayenne.access.types.ExtendedTypeTRIM_VALUES_THRESHOLD
- 
Constructor SummaryConstructors Constructor Description CalendarType(Class<T> calendarClass)
- 
Method SummaryModifier and Type Method Description protected ObjectconvertToJdbcObject(Calendar value, int type)StringgetClassName()Returns a full name of Java class that this ExtendedType supports.CalendarmaterializeObject(CallableStatement rs, int index, int type)Reads an object from a stored procedure OUT parameter, converting it to class returned by 'getClassName' method.CalendarmaterializeObject(ResultSet rs, int index, int type)Reads an object from JDBC ResultSet column, converting it to class returned by 'getClassName' method.voidsetJdbcObject(PreparedStatement statement, Calendar value, int pos, int type, int precision)Initializes a single parameter of a PreparedStatement with object value.StringtoString(Calendar value)Converts value of the supported type to a human-readable String representation.
- 
Field Details- 
calendarClass
 
- 
- 
Constructor Details- 
CalendarType
 
- 
- 
Method Details- 
getClassNameDescription copied from interface:ExtendedTypeReturns a full name of Java class that this ExtendedType supports.- Specified by:
- getClassNamein interface- ExtendedType<T extends Calendar>
 
- 
materializeObjectDescription copied from interface:ExtendedTypeReads an object from JDBC ResultSet column, converting it to class returned by 'getClassName' method.- Specified by:
- materializeObjectin interface- ExtendedType<T extends Calendar>
- 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<T extends Calendar>
- Throws:
- Exception- if read error occurred, or an object can't be converted to a target Java class.
 
- 
setJdbcObjectpublic void setJdbcObject(PreparedStatement statement, Calendar 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<T extends Calendar>
- Throws:
- Exception
 
- 
convertToJdbcObject- Throws:
- Exception
 
- 
toStringDescription copied from interface:ExtendedTypeConverts value of the supported type to a human-readable String representation.- Specified by:
- toStringin interface- ExtendedType<T extends Calendar>
- Parameters:
- value- a value to convert to String.
 
 
-