⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 datetimedatavalue.java

📁 derby database source code.good for you.
💻 JAVA
字号:
/*   Derby - Class org.apache.derby.iapi.types.DateTimeDataValue   Copyright 1999, 2004 The Apache Software Foundation or its licensors, as applicable.   Licensed under the Apache License, Version 2.0 (the "License");   you may not use this file except in compliance with the License.   You may obtain a copy of the License at      http://www.apache.org/licenses/LICENSE-2.0   Unless required by applicable law or agreed to in writing, software   distributed under the License is distributed on an "AS IS" BASIS,   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.   See the License for the specific language governing permissions and   limitations under the License. */package org.apache.derby.iapi.types;import org.apache.derby.iapi.error.StandardException;public interface DateTimeDataValue extends DataValueDescriptor{	public static final int YEAR_FIELD = 0;	public static final int MONTH_FIELD = 1;	public static final int DAY_FIELD = 2;	public static final int HOUR_FIELD = 3;	public static final int MINUTE_FIELD = 4;	public static final int SECOND_FIELD = 5;    // The JDBC interval types    public static final int FRAC_SECOND_INTERVAL = 0;    public static final int SECOND_INTERVAL = 1;    public static final int MINUTE_INTERVAL = 2;    public static final int HOUR_INTERVAL = 3;    public static final int DAY_INTERVAL = 4;    public static final int WEEK_INTERVAL = 5;    public static final int MONTH_INTERVAL = 6;    public static final int QUARTER_INTERVAL = 7;    public static final int YEAR_INTERVAL = 8;	/**	 * Get the year number out of a date.	 *	 * @param result	The result of the previous call to this method, null	 *					if not called yet.	 *	 * @return	A NumberDataValue containing the year number.	 *	 * @exception StandardException		Thrown on error	 */	NumberDataValue getYear(NumberDataValue result)							throws StandardException;	/**	 * Get the month number out of a date.	 *	 * @param result	The result of the previous call to this method, null	 *					if not called yet.	 *	 * @return	A NumberDataValue containing the month number.	 *	 * @exception StandardException		Thrown on error	 */	NumberDataValue getMonth(NumberDataValue result)							throws StandardException;	/**	 * Get the day of the month.	 *	 * @param result	The result of the previous call to this method, null	 *					if not called yet.	 *	 * @return	A NumberDataValue containing the day of the month.	 *	 * @exception StandardException		Thrown on error	 */	NumberDataValue getDate(NumberDataValue result)							throws StandardException;	/**	 * Get the hour of the day out of a time or timestamp.	 *	 * @param result	The result of the previous call to this method, null	 *					if not called yet.	 *	 * @return	A NumberDataValue containing the hour of the day.	 *	 * @exception StandardException		Thrown on error	 */	NumberDataValue getHours(NumberDataValue result)							throws StandardException;	/**	 * Get the minute of the hour out of a time or timestamp.	 *	 * @param result	The result of the previous call to this method, null	 *					if not called yet.	 *	 * @return	A NumberDataValue containing the minute of the hour.	 *	 * @exception StandardException		Thrown on error	 */	NumberDataValue getMinutes(NumberDataValue result)							throws StandardException;	/**	 * Get the second of the minute out of a time or timestamp.	 *	 * @param result	The result of the previous call to this method, null	 *					if not called yet.	 *	 * @return	A NumberDataValue containing the second of the minute.	 *	 * @exception StandardException		Thrown on error	 */	NumberDataValue getSeconds(NumberDataValue result)							throws StandardException;    /**     * Add a number of intervals to a datetime value. Implements the JDBC escape TIMESTAMPADD function.     *     * @param intervalType One of FRAC_SECOND_INTERVAL, SECOND_INTERVAL, MINUTE_INTERVAL, HOUR_INTERVAL,     *                     DAY_INTERVAL, WEEK_INTERVAL, MONTH_INTERVAL, QUARTER_INTERVAL, or YEAR_INTERVAL     * @param intervalCount The number of intervals to add     * @param currentDate Used to convert time to timestamp     * @param resultHolder If non-null a DateTimeDataValue that can be used to hold the result. If null then     *                     generate a new holder     *     * @return startTime + intervalCount intervals, as a timestamp     *     * @exception StandardException     */    DateTimeDataValue timestampAdd( int intervalType,                                    NumberDataValue intervalCount,                                    java.sql.Date currentDate,                                    DateTimeDataValue resultHolder)        throws StandardException;    /**     * Finds the difference between two datetime values as a number of intervals. Implements the JDBC     * TIMESTAMPDIFF escape function.     *     * @param intervalType One of FRAC_SECOND_INTERVAL, SECOND_INTERVAL, MINUTE_INTERVAL, HOUR_INTERVAL,     *                     DAY_INTERVAL, WEEK_INTERVAL, MONTH_INTERVAL, QUARTER_INTERVAL, or YEAR_INTERVAL     * @param time1     * @param currentDate Used to convert time to timestamp     * @param resultHolder If non-null a DateTimeDataValue that can be used to hold the result. If null then     *                     generate a new holder     *     * @return the number of intervals by which this datetime is greater than time1     *     * @exception StandardException     */    NumberDataValue timestampDiff( int intervalType,                                   DateTimeDataValue time1,                                   java.sql.Date currentDate,                                   NumberDataValue resultHolder)        throws StandardException;}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -