Package org.apache.cayenne.access.types
Class UtilDateType
java.lang.Object
org.apache.cayenne.access.types.UtilDateType
- All Implemented Interfaces:
- ExtendedType<Date>
- Direct Known Subclasses:
- OracleUtilDateType
public class UtilDateType extends Object implements ExtendedType<Date>
Maps 
java.util.Date to any of the three database date/time types: TIME,
 DATE, TIMESTAMP.- 
Field SummaryFields inherited from interface org.apache.cayenne.access.types.ExtendedTypeTRIM_VALUES_THRESHOLD
- 
Constructor SummaryConstructors Constructor Description UtilDateType()UtilDateType(boolean useCalendar)
- 
Method SummaryModifier and Type Method Description StringgetClassName()Returns "java.util.Date".DatematerializeObject(CallableStatement cs, int index, int type)Reads an object from a stored procedure OUT parameter, converting it to class returned by 'getClassName' method.DatematerializeObject(ResultSet rs, int index, int type)Reads an object from JDBC ResultSet column, converting it to class returned by 'getClassName' method.voidsetJdbcObject(PreparedStatement statement, Date value, int pos, int type, int scale)Initializes a single parameter of a PreparedStatement with object value.StringtoString(Date value)Converts value of the supported type to a human-readable String representation.
- 
Constructor Details- 
UtilDateTypepublic UtilDateType()- Since:
- 4.1.1
 
- 
UtilDateTypepublic UtilDateType(boolean useCalendar)- Since:
- 4.1.1
 
 
- 
- 
Method Details- 
getClassNameReturns "java.util.Date".- Specified by:
- getClassNamein interface- ExtendedType<Date>
 
- 
materializeObjectDescription copied from interface:ExtendedTypeReads an object from JDBC ResultSet column, converting it to class returned by 'getClassName' method.- Specified by:
- materializeObjectin interface- ExtendedType<Date>
- 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<Date>
- Throws:
- Exception- if read error occurred, or an object can't be converted to a target Java class.
 
- 
setJdbcObjectpublic void setJdbcObject(PreparedStatement statement, Date value, int pos, int type, int scale) throws ExceptionDescription copied from interface:ExtendedTypeInitializes a single parameter of a PreparedStatement with object value.- Specified by:
- setJdbcObjectin interface- ExtendedType<Date>
- Throws:
- Exception
 
- 
toStringDescription copied from interface:ExtendedTypeConverts value of the supported type to a human-readable String representation.- Specified by:
- toStringin interface- ExtendedType<Date>
- Parameters:
- value- a value to convert to String.
 
 
-