public enum ByteFromResultSet extends Enum<ByteFromResultSet> implements IFromResultSet<Byte,ByteColumnBuilder>
| Enum Constant and Description |
|---|
BYTE_FROM_BYTE
Reads an
byte from the ResultSet using
ResultSet.getByte(int), and adds it to the builder using
ByteColumnBuilder.add(byte) |
| Modifier and Type | Method and Description |
|---|---|
ColumnType<Byte> |
getColumnType()
|
static ByteFromResultSet |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ByteFromResultSet[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOfgetpublic static final ByteFromResultSet BYTE_FROM_BYTE
byte from the ResultSet using
ResultSet.getByte(int), and adds it to the builder using
ByteColumnBuilder.add(byte)public static ByteFromResultSet[] values()
for (ByteFromResultSet c : ByteFromResultSet.values()) System.out.println(c);
public static ByteFromResultSet valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic ColumnType<Byte> getColumnType()
IFromResultSetgetColumnType in interface IFromResultSet<Byte,ByteColumnBuilder>ColumnType used to create the ColumnBuilderCopyright © 2020. All rights reserved.