Searched refs:typeName (Results 1 - 10 of 10) sorted by relevance

/libcore/ojluni/src/main/java/java/lang/
H A DTypeNotPresentException.java49 private String typeName; field in class:TypeNotPresentException
55 * @param typeName the fully qualified name of the unavailable type
59 public TypeNotPresentException(String typeName, Throwable cause) { argument
60 super("Type " + typeName + " not present", cause);
61 this.typeName = typeName;
69 public String typeName() { return typeName;} method in class:TypeNotPresentException
/libcore/ojluni/src/main/java/java/sql/
H A DSQLData.java106 * @param typeName the SQL type name of the value on the data stream
113 void readSQL (SQLInput stream, String typeName) throws SQLException; argument
H A DConnection.java1272 * resulting JDBC type is not the appropriate type for the given typeName then
1276 * @param typeName the SQL name of the type the elements of the array map to. The typeName is a
1282 * appropriate for the typeName and the conversion is not supported, the typeName is null or this method is called on a closed connection
1286 Array createArrayOf(String typeName, Object[] elements) throws argument
1292 * @param typeName the SQL type name of the SQL structured type that this <code>Struct</code>
1293 * object maps to. The typeName is the name of a user-defined type that
1299 * @throws SQLException if a database error occurs, the typeName is null or this method is called on a closed connection
1303 Struct createStruct(String typeName, Objec argument
[all...]
H A DCallableStatement.java598 * <i>typeName</i> parameter is ignored.
606 * @param typeName the fully-qualified name of an SQL structured type
620 void registerOutParameter (int parameterIndex, int sqlType, String typeName) argument
718 * typeName parameter is ignored.
726 * @param typeName the fully-qualified name of an SQL structured type
741 void registerOutParameter (String parameterName, int sqlType, String typeName) argument
1316 * typeName is ignored.
1321 * @param typeName the fully-qualified name of an SQL user-defined type;
1331 void setNull (String parameterName, int sqlType, String typeName) argument
H A DPreparedStatement.java699 * typeName is ignored.
704 * @param typeName the fully-qualified name of an SQL user-defined type;
718 void setNull (int parameterIndex, int sqlType, String typeName) argument
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
H A DTypeNotPresentExceptionTest.java44 * java.lang.TypeNotPresentException.typeName()
48 assertNull(e.typeName());
51 assertEquals(getClass().getName(), e.typeName());
/libcore/dalvik/src/main/java/org/apache/harmony/dalvik/ddmc/
H A DChunkHandler.java111 public static int type(String typeName) { argument
112 if (typeName.length() != 4) {
113 throw new IllegalArgumentException("Bad type name: " + typeName);
117 result = ((result << 8) | (typeName.charAt(i) & 0xff));
/libcore/ojluni/src/main/java/javax/sql/
H A DRowSetMetaData.java230 * @param typeName data source specific type name.
233 void setColumnTypeName(int columnIndex, String typeName) throws SQLException; argument
H A DRowSet.java491 * the typeName parameter is ignored.
496 * @param typeName the fully qualified name of an SQL UDT or the type
501 void setNull (int paramIndex, int sqlType, String typeName) argument
522 * typeName is ignored.
527 * @param typeName the fully-qualified name of an SQL user-defined type;
536 void setNull (String parameterName, int sqlType, String typeName) argument
/libcore/luni/src/main/java/libcore/reflect/
H A DAnnotationMember.java298 throw new TypeNotPresentException(tnpe.typeName(), tnpe.getCause());

Completed in 180 milliseconds