Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Uses of Interface
org.apache.derby.iapi.types.DateTimeDataValue

Uses of DateTimeDataValue in org.apache.derby.iapi.types
 

Classes in org.apache.derby.iapi.types that implement DateTimeDataValue
 class SQLDate
          This contains an instance of a SQL Date.
 class SQLTime
          This contains an instance of a SQL Time Our current implementation doesn't implement time precision so the fractional seconds portion of the time is always 0.
 class SQLTimestamp
          This contains an instance of a SQL Timestamp object.
 

Methods in org.apache.derby.iapi.types that return DateTimeDataValue
static DateTimeDataValue SQLTimestamp.computeTimestampFunction(DataValueDescriptor operand, DataValueFactory dvf)
          Compute the SQL timestamp function.
 DateTimeDataValue SQLTimestamp.timestampAdd(int intervalType, NumberDataValue count, java.sql.Date currentDate, DateTimeDataValue resultHolder)
          Add a number of intervals to a datetime value.
 DateTimeDataValue SQLTime.timestampAdd(int intervalType, NumberDataValue intervalCount, java.sql.Date currentDate, DateTimeDataValue resultHolder)
          Add a number of intervals to a datetime value.
static DateTimeDataValue SQLDate.computeDateFunction(DataValueDescriptor operand, DataValueFactory dvf)
          Implement the date SQL function: construct a SQL date from a string, number, or timestamp.
 DateTimeDataValue SQLDate.timestampAdd(int intervalType, NumberDataValue intervalCount, java.sql.Date currentDate, DateTimeDataValue resultHolder)
          Add a number of intervals to a datetime value.
 DateTimeDataValue DateTimeDataValue.timestampAdd(int intervalType, NumberDataValue intervalCount, java.sql.Date currentDate, DateTimeDataValue resultHolder)
          Add a number of intervals to a datetime value.
 DateTimeDataValue DataValueFactoryImpl.getDataValue(java.sql.Date value)
           
 DateTimeDataValue DataValueFactoryImpl.getDataValue(java.sql.Date value, DateTimeDataValue previous)
           
 DateTimeDataValue DataValueFactoryImpl.getDataValue(java.sql.Time value)
           
 DateTimeDataValue DataValueFactoryImpl.getDataValue(java.sql.Time value, DateTimeDataValue previous)
           
 DateTimeDataValue DataValueFactoryImpl.getDataValue(java.sql.Timestamp value)
           
 DateTimeDataValue DataValueFactoryImpl.getDataValue(java.sql.Timestamp value, DateTimeDataValue previous)
           
 DateTimeDataValue DataValueFactoryImpl.getDate(DataValueDescriptor operand)
          Implement the date SQL function: construct a SQL date from a string, number, or timestamp.
 DateTimeDataValue DataValueFactoryImpl.getTimestamp(DataValueDescriptor operand)
          Implement the timestamp SQL function: construct a SQL timestamp from a string, or timestamp.
 DateTimeDataValue DataValueFactoryImpl.getTimestamp(DataValueDescriptor date, DataValueDescriptor time)
           
 DateTimeDataValue DataValueFactoryImpl.getNullDate(DateTimeDataValue dataValue)
           
 DateTimeDataValue DataValueFactoryImpl.getNullTime(DateTimeDataValue dataValue)
           
 DateTimeDataValue DataValueFactoryImpl.getNullTimestamp(DateTimeDataValue dataValue)
           
 DateTimeDataValue DataValueFactoryImpl.getDateValue(java.lang.String dateStr, boolean isJdbcEscape)
           
 DateTimeDataValue DataValueFactoryImpl.getTimeValue(java.lang.String timeStr, boolean isJdbcEscape)
           
 DateTimeDataValue DataValueFactoryImpl.getTimestampValue(java.lang.String timestampStr, boolean isJdbcEscape)
           
 DateTimeDataValue DataValueFactory.getDataValue(java.sql.Date value)
          Get a SQL date with the given value.
 DateTimeDataValue DataValueFactory.getDataValue(java.sql.Date value, DateTimeDataValue previous)
           
 DateTimeDataValue DataValueFactory.getDataValue(java.sql.Time value)
          Get a SQL time with the given value.
 DateTimeDataValue DataValueFactory.getDataValue(java.sql.Time value, DateTimeDataValue previous)
           
 DateTimeDataValue DataValueFactory.getDataValue(java.sql.Timestamp value)
          Get a SQL timestamp with the given value.
 DateTimeDataValue DataValueFactory.getDataValue(java.sql.Timestamp value, DateTimeDataValue previous)
           
 DateTimeDataValue DataValueFactory.getTimestamp(DataValueDescriptor operand)
          Implement the timestamp SQL function: construct a SQL timestamp from a string, or timestamp.
 DateTimeDataValue DataValueFactory.getTimestamp(DataValueDescriptor date, DataValueDescriptor time)
          Construct a SQL timestamp from a date and time.
 DateTimeDataValue DataValueFactory.getDate(DataValueDescriptor operand)
          Implements the SQL date function
 DateTimeDataValue DataValueFactory.getDateValue(java.lang.String dateStr, boolean isJdbcEscape)
           
 DateTimeDataValue DataValueFactory.getTimeValue(java.lang.String timeStr, boolean isJdbcEscape)
           
 DateTimeDataValue DataValueFactory.getTimestampValue(java.lang.String timestampStr, boolean isJdbcEscape)
           
 DateTimeDataValue DataValueFactory.getNullDate(DateTimeDataValue dataValue)
          Get a SQL date with a SQL null value.
 DateTimeDataValue DataValueFactory.getNullTime(DateTimeDataValue dataValue)
          Get a SQL time with a SQL null value.
 DateTimeDataValue DataValueFactory.getNullTimestamp(DateTimeDataValue dataValue)
          Get a SQL timestamp with a SQL null value.
 

Methods in org.apache.derby.iapi.types with parameters of type DateTimeDataValue
 DateTimeDataValue SQLTimestamp.timestampAdd(int intervalType, NumberDataValue count, java.sql.Date currentDate, DateTimeDataValue resultHolder)
          Add a number of intervals to a datetime value.
 NumberDataValue SQLTimestamp.timestampDiff(int intervalType, DateTimeDataValue time1, java.sql.Date currentDate, NumberDataValue resultHolder)
          Finds the difference between two datetime values as a number of intervals.
(package private) static SQLTimestamp SQLTimestamp.promote(DateTimeDataValue dateTime, java.sql.Date currentDate)
          Promotes a DateTimeDataValue to a timestamp.
 DateTimeDataValue SQLTime.timestampAdd(int intervalType, NumberDataValue intervalCount, java.sql.Date currentDate, DateTimeDataValue resultHolder)
          Add a number of intervals to a datetime value.
 NumberDataValue SQLTime.timestampDiff(int intervalType, DateTimeDataValue time1, java.sql.Date currentDate, NumberDataValue resultHolder)
          Finds the difference between two datetime values as a number of intervals.
 DateTimeDataValue SQLDate.timestampAdd(int intervalType, NumberDataValue intervalCount, java.sql.Date currentDate, DateTimeDataValue resultHolder)
          Add a number of intervals to a datetime value.
 NumberDataValue SQLDate.timestampDiff(int intervalType, DateTimeDataValue time1, java.sql.Date currentDate, NumberDataValue resultHolder)
          Finds the difference between two datetime values as a number of intervals.
 DateTimeDataValue DateTimeDataValue.timestampAdd(int intervalType, NumberDataValue intervalCount, java.sql.Date currentDate, DateTimeDataValue resultHolder)
          Add a number of intervals to a datetime value.
 NumberDataValue DateTimeDataValue.timestampDiff(int intervalType, DateTimeDataValue time1, java.sql.Date currentDate, NumberDataValue resultHolder)
          Finds the difference between two datetime values as a number of intervals.
 DateTimeDataValue DataValueFactoryImpl.getDataValue(java.sql.Date value, DateTimeDataValue previous)
           
 DateTimeDataValue DataValueFactoryImpl.getDataValue(java.sql.Time value, DateTimeDataValue previous)
           
 DateTimeDataValue DataValueFactoryImpl.getDataValue(java.sql.Timestamp value, DateTimeDataValue previous)
           
 DateTimeDataValue DataValueFactoryImpl.getNullDate(DateTimeDataValue dataValue)
           
 DateTimeDataValue DataValueFactoryImpl.getNullTime(DateTimeDataValue dataValue)
           
 DateTimeDataValue DataValueFactoryImpl.getNullTimestamp(DateTimeDataValue dataValue)
           
 DateTimeDataValue DataValueFactory.getDataValue(java.sql.Date value, DateTimeDataValue previous)
           
 DateTimeDataValue DataValueFactory.getDataValue(java.sql.Time value, DateTimeDataValue previous)
           
 DateTimeDataValue DataValueFactory.getDataValue(java.sql.Timestamp value, DateTimeDataValue previous)
           
 DateTimeDataValue DataValueFactory.getNullDate(DateTimeDataValue dataValue)
          Get a SQL date with a SQL null value.
 DateTimeDataValue DataValueFactory.getNullTime(DateTimeDataValue dataValue)
          Get a SQL time with a SQL null value.
 DateTimeDataValue DataValueFactory.getNullTimestamp(DateTimeDataValue dataValue)
          Get a SQL timestamp with a SQL null value.