Searched defs:Date (Results 1 - 6 of 6) sorted by relevance
/libcore/ojluni/src/main/java/sun/util/calendar/ |
H A D | Gregorian.java | 39 static class Date extends BaseCalendar.Date { class in class:Gregorian 40 protected Date() { method in class:Gregorian.Date 44 protected Date(TimeZone zone) { method in class:Gregorian.Date 64 public Date getCalendarDate() { 68 public Date getCalendarDate(long millis) { 72 public Date getCalendarDate(long millis, CalendarDate date) { 73 return (Date) super.getCalendarDate(millis, date); 76 public Date getCalendarDate(long millis, TimeZone zone) { 80 public Date newCalendarDat [all...] |
H A D | JulianCalendar.java | 47 private static class Date extends BaseCalendar.Date { class in class:JulianCalendar 48 protected Date() { method in class:JulianCalendar.Date 53 protected Date(TimeZone zone) { method in class:JulianCalendar.Date 58 public Date setEra(Era era) { 121 public Date getCalendarDate() { 125 public Date getCalendarDate(long millis) { 129 public Date getCalendarDate(long millis, CalendarDate date) { 130 return (Date) super.getCalendarDate(millis, date); 133 public Date getCalendarDat [all...] |
H A D | LocalGregorianCalendar.java | 51 public static class Date extends BaseCalendar.Date { class in class:LocalGregorianCalendar 53 protected Date() { method in class:LocalGregorianCalendar.Date 57 protected Date(TimeZone zone) { method in class:LocalGregorianCalendar.Date 63 public Date setEra(Era era) { 71 public Date addYear(int localYear) { 77 public Date setYear(int localYear) { 198 public Date getCalendarDate() { 202 public Date getCalendarDate(long millis) { 206 public Date getCalendarDat [all...] |
H A D | BaseCalendar.java | 144 public abstract static class Date extends CalendarDate { class in class:BaseCalendar 145 protected Date() { method in class:BaseCalendar.Date 148 protected Date(TimeZone zone) { method in class:BaseCalendar.Date 152 public Date setNormalizedDate(int normalizedYear, int month, int dayOfMonth) { 193 Date bdate = (Date) date; 223 Date bdate = (Date) date; 274 Date bdate = (Date) dat [all...] |
/libcore/ojluni/src/main/java/java/sql/ |
H A D | Date.java | 36 * millisecond values wrapped by a <code>java.sql.Date</code> instance 41 public class Date extends java.util.Date { class in inherits:java.util.Date 44 * Constructs a <code>Date</code> object initialized with the given 53 * @deprecated instead use the constructor <code>Date(long date)</code> 56 public Date(int year, int month, int day) { method in class:Date 61 * Constructs a <code>Date</code> object using the given milliseconds 72 public Date(long date) { method in class:Date 79 * Sets an existing <code>Date</code> object 98 * a <code>Date</cod [all...] |
/libcore/ojluni/src/main/java/java/util/ |
H A D | Date.java | 42 * The class <code>Date</code> represents a specific instant 45 * Prior to JDK 1.1, the class <code>Date</code> had two additional 53 * The corresponding methods in <code>Date</code> are deprecated. 55 * Although the <code>Date</code> class is intended to reflect 94 * In all methods of class <code>Date</code> that accept or return 129 public class Date class in inherits:java.io.Serializable,Cloneable,Comparable 130 implements java.io.Serializable, Cloneable, Comparable<Date> 144 private transient BaseCalendar.Date cdate; 149 /* use serialVersionUID from modified java.util.Date for 150 * interoperability with JDK1.1. The Date wa 162 public Date() { method in class:Date 175 public Date(long date) { method in class:Date 194 public Date(int year, int month, int date) { method in class:Date 217 public Date(int year, int month, int date, int hrs, int min) { method in class:Date 241 public Date(int year, int month, int date, int hrs, int min, int sec) { method in class:Date 271 public Date(String s) { method in class:Date [all...] |
Completed in 608 milliseconds