Interface JDBCValueMappings.PrimitiveValueReader
-
- All Known Subinterfaces:
JDBCValueMappings.ValueReader<JALO,DB>
- All Known Implementing Classes:
JDBCValueMappings.AbstractValueReaderWriter,JDBCValueMappings.BlobValueWriter,JDBCValueMappings.DefaultDateTimestampValueReaderWriter,JDBCValueMappings.DefaultIntegerValueReaderWriter,JDBCValueMappings.DefaultLongReaderWriter,JDBCValueMappings.DefaultStringValueReaderWriter,JDBCValueMappings.ItemPropertyValueReaderWriter,JDBCValueMappings.ItemReaderWriter,JDBCValueMappings.PKReaderWriter
- Enclosing class:
- JDBCValueMappings
public static interface JDBCValueMappings.PrimitiveValueReader
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleangetBoolean(java.sql.ResultSet rs, int idx)booleangetBoolean(java.sql.ResultSet rs, java.lang.String fieldName)bytegetByte(java.sql.ResultSet rs, int idx)bytegetByte(java.sql.ResultSet rs, java.lang.String fieldName)chargetChar(java.sql.ResultSet rs, int idx)chargetChar(java.sql.ResultSet rs, java.lang.String fieldName)doublegetDouble(java.sql.ResultSet rs, int idx)doublegetDouble(java.sql.ResultSet rs, java.lang.String fieldName)floatgetFloat(java.sql.ResultSet rs, int idx)floatgetFloat(java.sql.ResultSet rs, java.lang.String fieldName)intgetInt(java.sql.ResultSet rs, int idx)intgetInt(java.sql.ResultSet rs, java.lang.String fieldName)longgetLong(java.sql.ResultSet rs, int idx)longgetLong(java.sql.ResultSet rs, java.lang.String fieldName)shortgetShort(java.sql.ResultSet rs, int idx)shortgetShort(java.sql.ResultSet rs, java.lang.String fieldName)
-
-
-
Method Detail
-
getLong
long getLong(java.sql.ResultSet rs, java.lang.String fieldName) throws java.sql.SQLException- Throws:
java.sql.SQLException
-
getLong
long getLong(java.sql.ResultSet rs, int idx) throws java.sql.SQLException- Throws:
java.sql.SQLException
-
getDouble
double getDouble(java.sql.ResultSet rs, java.lang.String fieldName) throws java.sql.SQLException- Throws:
java.sql.SQLException
-
getDouble
double getDouble(java.sql.ResultSet rs, int idx) throws java.sql.SQLException- Throws:
java.sql.SQLException
-
getChar
char getChar(java.sql.ResultSet rs, java.lang.String fieldName) throws java.sql.SQLException- Throws:
java.sql.SQLException
-
getChar
char getChar(java.sql.ResultSet rs, int idx) throws java.sql.SQLException- Throws:
java.sql.SQLException
-
getByte
byte getByte(java.sql.ResultSet rs, java.lang.String fieldName) throws java.sql.SQLException- Throws:
java.sql.SQLException
-
getByte
byte getByte(java.sql.ResultSet rs, int idx) throws java.sql.SQLException- Throws:
java.sql.SQLException
-
getFloat
float getFloat(java.sql.ResultSet rs, java.lang.String fieldName) throws java.sql.SQLException- Throws:
java.sql.SQLException
-
getFloat
float getFloat(java.sql.ResultSet rs, int idx) throws java.sql.SQLException- Throws:
java.sql.SQLException
-
getInt
int getInt(java.sql.ResultSet rs, java.lang.String fieldName) throws java.sql.SQLException- Throws:
java.sql.SQLException
-
getInt
int getInt(java.sql.ResultSet rs, int idx) throws java.sql.SQLException- Throws:
java.sql.SQLException
-
getBoolean
boolean getBoolean(java.sql.ResultSet rs, java.lang.String fieldName) throws java.sql.SQLException- Throws:
java.sql.SQLException
-
getBoolean
boolean getBoolean(java.sql.ResultSet rs, int idx) throws java.sql.SQLException- Throws:
java.sql.SQLException
-
getShort
short getShort(java.sql.ResultSet rs, java.lang.String fieldName) throws java.sql.SQLException- Throws:
java.sql.SQLException
-
getShort
short getShort(java.sql.ResultSet rs, int idx) throws java.sql.SQLException- Throws:
java.sql.SQLException
-
-