Searched defs:Date (Results 1 - 2 of 2) sorted by relevance

/dalvik/libcore/sql/src/main/java/java/sql/
H A DDate.java23 * A class which can consume and produce dates in SQL {@code Date} format.
29 * This is unlike the familiar {@code java.util.Date} object, which also includes
34 * java.sql.Date} class are "normalized" to the time 00:00:00.000 GMT on the
40 public class Date extends java.util.Date { class in inherits:java.util.Date
45 * Constructs a {@code Date} object corresponding to the supplied year,
48 * @deprecated Please use the constructor {@link #Date(long)}.
61 public Date(int theYear, int theMonth, int theDay) { method in class:Date
72 * milliseconds) stored in the {@code Date} object is adjusted to
77 public Date(lon method in class:Date
[all...]
/dalvik/libcore/luni/src/main/java/java/util/
H A DDate.java31 * {@code Date} represents a specific moment in time, to the millisecond.
40 public class Date implements Serializable, Cloneable, Comparable<Date> { class in inherits:Serializable,Cloneable,Comparable
45 private static int creationYear = new Date().getYear();
50 * Initializes this {@code Date} instance to the current date and time.
54 public Date() { method in class:Date
59 * Constructs a new {@code Date} initialized to midnight in the default {@code TimeZone} on
74 public Date(int year, int month, int day) { method in class:Date
81 * Constructs a new {@code Date} initialized to the specified date and time in the
100 public Date(in method in class:Date
128 public Date(int year, int month, int day, int hour, int minute, int second) { method in class:Date
142 public Date(long milliseconds) { method in class:Date
157 public Date(String string) { method in class:Date
[all...]

Completed in 63 milliseconds