T - public class ArrayType<T> extends AbstractType<T>
ArrayType maps Java arrays to JDBC arrays| Constructor and Description |
|---|
ArrayType(java.lang.Class<T> type,
java.lang.String typeName) |
| Modifier and Type | Method and Description |
|---|---|
java.lang.Class<T> |
getReturnedClass()
Get the returned type
|
T |
getValue(java.sql.ResultSet rs,
int startIndex)
Get the object from the result set
|
void |
setValue(java.sql.PreparedStatement st,
int startIndex,
T value)
Set the object to the statement
|
getLiteral, getSQLTypespublic ArrayType(java.lang.Class<T> type, java.lang.String typeName)
public java.lang.Class<T> getReturnedClass()
Type@Nullable public T getValue(java.sql.ResultSet rs, int startIndex) throws java.sql.SQLException
Typers - result setstartIndex - column index in result setjava.sql.SQLExceptionpublic void setValue(java.sql.PreparedStatement st,
int startIndex,
T value)
throws java.sql.SQLException
Typest - statementstartIndex - column index in statementvalue - value to be setjava.sql.SQLExceptionCopyright © 2007–2021 Querydsl. All rights reserved.