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

/dalvik/libcore/sql/src/main/java/java/sql/
H A DDate.java21 * A class which can consume and produce dates in SQL {@code Date} format.
27 * This is unlike the familiar {@code java.util.Date} object, which also includes
32 * java.sql.Date} class are "normalized" to the time 00:00:00.000 GMT on the
35 public class Date extends java.util.Date { class in inherits:java.util.Date
40 * Constructs a {@code Date} object corresponding to the supplied year,
43 * @deprecated Use the constructor {@link #Date(long)}.
54 public Date(int theYear, int theMonth, int theDay) { method in class:Date
65 * milliseconds) stored in the {@code Date} object is adjusted to
69 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.
39 public class Date implements Serializable, Cloneable, Comparable<Date> { class in inherits:Serializable,Cloneable,Comparable
44 private static int creationYear = new Date().getYear();
56 * Initializes this {@code Date} instance to the current time.
58 public Date() { method in class:Date
63 * Constructs a new {@code Date} initialized to midnight in the default {@code TimeZone} on
77 public Date(int year, int month, int day) { method in class:Date
84 * Constructs a new {@code Date} initialized to the specified date and time in the
102 public Date(in method in class:Date
129 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
156 public Date(String string) { method in class:Date
[all...]

Completed in 68 milliseconds