Searched defs:theObject (Results 1 - 6 of 6) sorted by relevance

/libcore/luni/src/main/java/java/sql/
H A DDriverManager.java380 * @param theObject
387 private static boolean isClassFromClassLoader(Object theObject, argument
390 if ((theObject == null) || (theClassLoader == null)) {
394 Class<?> objectClass = theObject.getClass();
H A DTimestamp.java176 * @param theObject
196 public int compareTo(Date theObject) throws ClassCastException { argument
197 return this.compareTo((Timestamp) theObject);
236 * @param theObject
244 public boolean equals(Object theObject) { argument
245 if (theObject instanceof Timestamp) {
246 return equals((Timestamp) theObject);
H A DSQLOutput.java220 * @param theObject
226 public void writeObject(SQLData theObject) throws SQLException; argument
H A DPreparedStatement.java464 * @param theObject
470 public void setObject(int parameterIndex, Object theObject) argument
486 * @param theObject
495 public void setObject(int parameterIndex, Object theObject, argument
511 * @param theObject
524 public void setObject(int parameterIndex, Object theObject, argument
H A DCallableStatement.java1168 * issuing this request to the connected database {@code theObject} is
1174 * If {@code theObject} implements any of the following interfaces then the
1184 * @param theObject
1190 public void setObject(String parameterName, Object theObject) argument
1196 * The parameter {@code theObject} is converted to the given {@code
1200 * SQL data stream. If {@code theObject} is an instance of one of the
1214 * @param theObject
1222 public void setObject(String parameterName, Object theObject, argument
1232 * {@code theObject} implements any of the following interfaces
1245 * @param theObject
1256 setObject(String parameterName, Object theObject, int targetSqlType, int scale) argument
[all...]
/libcore/luni/src/main/java/javax/sql/
H A DRowSet.java1319 * @param theObject
1325 public void setObject(int parameterIndex, Object theObject) argument
1335 * @param theObject
1343 public void setObject(int parameterIndex, Object theObject, argument
1353 * @param theObject
1365 public void setObject(int parameterIndex, Object theObject, argument
1374 * @param theObject
1379 public void setObject(String parameterName, Object theObject) argument
1388 * @param theObject
1396 public void setObject(String parameterName, Object theObject, argument
1417 setObject(String parameterName, Object theObject, int targetSqlType, int scale) argument
[all...]

Completed in 185 milliseconds