Package org.jdbi.v3.postgres.internal
Class BitStringEnumSetColumnMapper<E extends Enum<E>>
java.lang.Object
org.jdbi.v3.postgres.internal.BitStringEnumSetColumnMapper<E>
- All Implemented Interfaces:
ColumnMapper<EnumSet<E>>
public class BitStringEnumSetColumnMapper<E extends Enum<E>>
extends Object
implements ColumnMapper<EnumSet<E>>
-
Method Summary
Modifier and TypeMethodDescriptionmap
(ResultSet r, int columnNumber, StatementContext ctx) Map the given column of the current row of the result set to an Object.Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.jdbi.v3.core.mapper.ColumnMapper
init, map
-
Method Details
-
map
Description copied from interface:ColumnMapper
Map the given column of the current row of the result set to an Object. This method should not cause the result set to advance; allow Jdbi to do that, please.- Specified by:
map
in interfaceColumnMapper<E extends Enum<E>>
- Parameters:
r
- the result set being iteratedcolumnNumber
- the column number to map (starts at 1)ctx
- the statement context- Returns:
- the value to return for this column
- Throws:
SQLException
- if anything goes wrong go ahead and let this percolate; Jdbi will handle it
-