Home | History | Annotate | Download | only in util

Lines Matching defs:GregorianCalendar

25  * {@code GregorianCalendar} is a concrete subclass of {@link Calendar}
40 * this correctly. Before the Gregorian cutover, {@code GregorianCalendar}
47 * {@code GregorianCalendar} implements <em>proleptic</em> Gregorian
50 * {@code GregorianCalendar} may be used for all years to generate
52 * {@code GregorianCalendar} are historically accurate only from March 1,
124 * // create a GregorianCalendar with the Pacific Daylight time zone
126 * Calendar calendar = new GregorianCalendar(pdt);
184 public class GregorianCalendar extends Calendar {
227 * Constructs a new {@code GregorianCalendar} initialized to the current date and
230 public GregorianCalendar() {
235 * Constructs a new {@code GregorianCalendar} initialized to midnight in the default
245 public GregorianCalendar(int year, int month, int day) {
251 * Constructs a new {@code GregorianCalendar} initialized to the specified date and
265 public GregorianCalendar(int year, int month, int day, int hour, int minute) {
271 * Constructs a new {@code GregorianCalendar} initialized to the specified date and
287 public GregorianCalendar(int year, int month, int day, int hour,
293 GregorianCalendar(long milliseconds) {
299 * Constructs a new {@code GregorianCalendar} initialized to the current date and
305 public GregorianCalendar(Locale locale) {
310 * Constructs a new {@code GregorianCalendar} initialized to the current date and
316 public GregorianCalendar(TimeZone timezone) {
321 * Constructs a new {@code GregorianCalendar} initialized to the current date and
329 public GregorianCalendar(TimeZone timezone, Locale locale) {
334 GregorianCalendar(boolean ignored) {
862 * Returns true if {@code object} is a GregorianCalendar with the same
866 if (!(object instanceof GregorianCalendar)) {
873 && gregorianCutover == ((GregorianCalendar) object).gregorianCutover;
910 GregorianCalendar clone = (GregorianCalendar) clone();
1235 GregorianCalendar cal = new GregorianCalendar(TimeZone.getTimeZone("GMT"));