| 
JavaTM 2 Platform Std. Ed. v1.3.1  | 
|||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use Calendar | |
| java.sql | |
| java.text | |
| java.util | |
| Uses of Calendar in java.sql | 
| Methods in java.sql with parameters of type Calendar | |
 void | 
PreparedStatement.setDate(int parameterIndex,
        Date x,
        Calendar cal)
Sets the designated parameter to the given java.sql.Date value,
 using the given Calendar object. | 
 void | 
PreparedStatement.setTime(int parameterIndex,
        Time x,
        Calendar cal)
Sets the designated parameter to the given java.sql.Time value,
 using the given Calendar object. | 
 void | 
PreparedStatement.setTimestamp(int parameterIndex,
             Timestamp x,
             Calendar cal)
Sets the designated parameter to the given java.sql.Timestamp value,
 using the given Calendar object. | 
 Date | 
CallableStatement.getDate(int parameterIndex,
        Calendar cal)
Gets the value of a JDBC DATE parameter as a 
 java.sql.Date object, using
 the given Calendar object
 to construct the date. | 
 Time | 
CallableStatement.getTime(int parameterIndex,
        Calendar cal)
Gets the value of a JDBC TIME parameter as a 
 java.sql.Time object, using
 the given Calendar object
 to construct the time. | 
 Timestamp | 
CallableStatement.getTimestamp(int parameterIndex,
             Calendar cal)
Gets the value of a JDBC TIMESTAMP parameter as a
 java.sql.Timestamp object, using
 the given Calendar object to construct
 the Timestamp object. | 
 Date | 
ResultSet.getDate(int columnIndex,
        Calendar cal)
Returns the value of the designated column in the current row of this ResultSet object as a java.sql.Date object
 in the Java programming language. | 
 Date | 
ResultSet.getDate(String columnName,
        Calendar cal)
Returns the value of the designated column in the current row of this ResultSet object as a java.sql.Date object
 in the Java programming language. | 
 Time | 
ResultSet.getTime(int columnIndex,
        Calendar cal)
Returns the value of the designated column in the current row of this ResultSet object as a java.sql.Time object
 in the Java programming language. | 
 Time | 
ResultSet.getTime(String columnName,
        Calendar cal)
Returns the value of the designated column in the current row of this ResultSet object as a java.sql.Time object
 in the Java programming language. | 
 Timestamp | 
ResultSet.getTimestamp(int columnIndex,
             Calendar cal)
Returns the value of the designated column in the current row of this ResultSet object as a java.sql.Timestamp object
 in the Java programming language. | 
 Timestamp | 
ResultSet.getTimestamp(String columnName,
             Calendar cal)
Returns the value of the designated column in the current row of this ResultSet object as a java.sql.Timestamp object
 in the Java programming language. | 
| Uses of Calendar in java.text | 
| Fields in java.text declared as Calendar | |
protected  Calendar | 
DateFormat.calendar
The calendar that DateFormat uses to produce the time field
 values needed to implement date and time formatting. | 
| Methods in java.text that return Calendar | |
 Calendar | 
DateFormat.getCalendar()
Gets the calendar associated with this date/time formatter.  | 
| Methods in java.text with parameters of type Calendar | |
 void | 
DateFormat.setCalendar(Calendar newCalendar)
Set the calendar to be used by this date format.  | 
| Uses of Calendar in java.util | 
| Subclasses of Calendar in java.util | |
 class | 
GregorianCalendar
GregorianCalendar is a concrete subclass of
 Calendar
 and provides the standard calendar used by most of the world. | 
| Methods in java.util that return Calendar | |
static Calendar | 
Calendar.getInstance()
Gets a calendar using the default time zone and locale.  | 
static Calendar | 
Calendar.getInstance(TimeZone zone)
Gets a calendar using the specified time zone and default locale.  | 
static Calendar | 
Calendar.getInstance(Locale aLocale)
Gets a calendar using the default time zone and specified locale.  | 
static Calendar | 
Calendar.getInstance(TimeZone zone,
            Locale aLocale)
Gets a calendar with the specified time zone and locale.  | 
  | 
JavaTM 2 Platform Std. Ed. v1.3.1  | 
|||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
Java, Java 2D, and JDBC are trademarks or registered trademarks of Sun Microsystems, Inc. in the US and other countries.
Copyright 1993-2001 Sun Microsystems, Inc. 901 San Antonio Road
Palo Alto, California, 94303, U.S.A.  All Rights Reserved.