Class DateType

java.lang.Object
org.apache.cayenne.access.types.DateType
All Implemented Interfaces:
ExtendedType<Date>

public class DateType extends Object implements ExtendedType<Date>
Since:
3.0
  • Constructor Details

    • DateType

      public DateType()
      Since:
      4.2
    • DateType

      public DateType(boolean useCalendar)
      Since:
      4.2
  • Method Details

    • getClassName

      public String getClassName()
      Description copied from interface: ExtendedType
      Returns a full name of Java class that this ExtendedType supports.
      Specified by:
      getClassName in interface ExtendedType<Date>
    • materializeObject

      public Date materializeObject(ResultSet rs, int index, int type) throws Exception
      Description copied from interface: ExtendedType
      Reads an object from JDBC ResultSet column, converting it to class returned by 'getClassName' method.
      Specified by:
      materializeObject in interface ExtendedType<Date>
      Throws:
      Exception - if read error occurred, or an object can't be converted to a target Java class.
    • materializeObject

      public Date materializeObject(CallableStatement rs, int index, int type) throws Exception
      Description copied from interface: ExtendedType
      Reads an object from a stored procedure OUT parameter, converting it to class returned by 'getClassName' method.
      Specified by:
      materializeObject in interface ExtendedType<Date>
      Throws:
      Exception - if read error occurred, or an object can't be converted to a target Java class.
    • setJdbcObject

      public void setJdbcObject(PreparedStatement statement, Date value, int pos, int type, int scale) throws Exception
      Description copied from interface: ExtendedType
      Initializes a single parameter of a PreparedStatement with object value.
      Specified by:
      setJdbcObject in interface ExtendedType<Date>
      Throws:
      Exception
    • toString

      public String toString(Date value)
      Description copied from interface: ExtendedType
      Converts value of the supported type to a human-readable String representation.
      Specified by:
      toString in interface ExtendedType<Date>
      Parameters:
      value - a value to convert to String.