Use is subject to License Terms. Your use of this web site or any of its content or software indicates your agreement to be bound by these License Terms.

Copyright © 2006 Sun Microsystems, Inc. All rights reserved.

Foundation 1.1.2

Uses of Class
java.util.Calendar

Packages that use Calendar
java.text Provides classes and interfaces for handling text, dates, numbers, and messages in a manner independent of natural languages. 
java.util Contains the collections framework, legacy collection classes, event model, date and time facilities, internationalization, and miscellaneous utility classes (a string tokenizer, a random-number generator, and a bit array). 
 

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.
 


Foundation 1.1.2

Copyright © 2006 Sun Microsystems, Inc. All rights reserved. Use is subject to License Terms. Your use of this web site or any of its content or software indicates your agreement to be bound by these License Terms.

For more information, please consult the JSR 219 specification.