Searched refs:Time (Results 1 - 15 of 15) sorted by relevance

/libcore/luni/src/main/java/java/sql/
H A DTime.java26 public class Time extends Date { class in inherits:Date
31 * Constructs a {@code Time} object using the supplied values for <i>Hour</i>,
33 * <i>Day</i> elements of the {@code Time} object are set to the date
37 * elements of a {@code Time} object will result in an {@code
42 * @deprecated Use the constructor {@link #Time(long)}.
52 public Time(int theHour, int theMinute, int theSecond) { method in class:Time
57 * Constructs a {@code Time} object using a supplied time specified in
61 * a {@code Time} specified in milliseconds since the
64 public Time(long theTime) { method in class:Time
70 * {@code Time} objec
[all...]
H A DCallableStatement.java615 * java.sql.Time}.
620 * @return the parameter's value as a {@code java.sql.Time}.
624 * @see Time
626 public Time getTime(int parameterIndex) throws SQLException;
630 * java.sql.Time}, using the supplied {@code Calendar} to construct the
632 * and locales in order to determine {@code Time}.
638 * the calendar to use in constructing {@code Time}.
639 * @return the parameter's value as a {@code java.sql.Time}.
643 * @see Time
646 public Time getTim
[all...]
H A DSQLInput.java165 * java.sql.Time}.
167 * @return the attribute as a {@code java.sql.Time}. {@code null} if the
171 * @see Time
173 public Time readTime() throws SQLException;
H A DSQLOutput.java155 * Write a {@code java.sql.Time} value into the output stream.
158 * the {@code Time} value to write.
161 * @see Time
163 public void writeTime(Time theTime) throws SQLException;
H A DResultSet.java919 * java.sql.Time} value.
923 * @return a Time representing the column value, {@code null} if the column
928 public Time getTime(int columnIndex) throws SQLException;
932 * java.sql.Time} value. The supplied {@code Calendar} is used to
933 * map the SQL {@code Time} value to a Java Time value.
938 * a {@code Calendar} to use in creating the Java Time value.
939 * @return a Time representing the column value, {@code null} if the column
944 public Time getTime(int columnIndex, Calendar cal) throws SQLException;
948 * java.sql.Time} valu
[all...]
H A DPreparedStatement.java576 * java.sql.Time} value.
582 * a {@code java.sql.Time} value to which the parameter at
587 public void setTime(int parameterIndex, Time theTime) throws SQLException;
591 * java.sql.Time} value, using a supplied {@code Calendar}.
602 * a {@code java.sql.Time} value to which the parameter at
609 * @see Time
612 public void setTime(int parameterIndex, Time theTime, Calendar cal)
/libcore/luni/src/main/java/org/apache/harmony/security/x509/
H A DTime.java38 * Time ::= CHOICE {
44 public final class Time { class
H A DValidity.java40 * notBefore Time,
41 * notAfter Time
86 = new ASN1Sequence(new ASN1Type[] {Time.ASN1, Time.ASN1 }) {
H A DTBSCertList.java54 * thisUpdate Time,
55 * nextUpdate Time OPTIONAL,
58 * revocationDate Time,
169 new ASN1Type[] {ASN1Integer.getInstance(), Time.ASN1,
327 Time.ASN1, // thisUpdate
328 Time.ASN1, // nextUpdate
/libcore/luni/src/test/java/libcore/java/sql/
H A DOldResultSetGetterTests.java29 import java.sql.Time;
133 java.sql.Time.class, // Types.TIME,
922 // getTime should return Time value for a TIMESTAMP type but returns null
934 Time t1 = new java.sql.Time(millis);
948 Time t2 = new java.sql.Time(millis2);
952 Time resTime = res.getTime(i);
980 List<Time> times = new LinkedList<Time>();
[all...]
H A DOldPreparedStatementTest.java36 import java.sql.Time;
1922 Time[] times = { new Time(24, 25, 26), new Time(Integer.MAX_VALUE),
1923 new Time(123456789) };
1982 Time[] times = { new Time(24, 25, 26), new Time(Integer.MAX_VALUE),
1983 new Time(123456789) };
/libcore/luni/src/main/java/javax/sql/
H A DRowSet.java34 import java.sql.Time;
1591 * to a supplied {@code java.sql.Time}, converting it to an SQL {@code TIME}
1602 * @see java.sql.Time
1604 public void setTime(int parameterIndex, Time theTime) throws SQLException;
1608 * to a supplied {@code java.sql.Time}, converting it to an SQL {@code TIME}
1621 * @see java.sql.Time
1623 public void setTime(int parameterIndex, Time theTime, Calendar theCalendar)
1628 * supplied java.sql.Time, converting to an SQL TIME value using a supplied
1634 * the Time value to set
1638 public void setTime(String parameterName, Time theTim
[all...]
/libcore/luni/src/test/java/tests/support/
H A DDatabaseCreator.java23 import java.sql.Time;
363 + new Time(time).toString() + "')";
/libcore/luni/src/test/java/tests/java/sql/
H A DSelectFunctionalityTest.java29 import java.sql.Time;
50 private static Time time;
103 time = new Time(currentTime);
H A DStressTest.java331 ps.setTime(11, new java.sql.Time(System.currentTimeMillis()));

Completed in 250 milliseconds