public enum ShortFromResultSet extends Enum<ShortFromResultSet> implements IFromResultSet<Short,ShortColumnBuilder>
| Enum Constant and Description |
|---|
SHORT_FROM_SHORT
Reads an
short from the ResultSet using
ResultSet.getShort(int), and adds it to the builder using
ShortColumnBuilder.add(short) |
| Modifier and Type | Method and Description |
|---|---|
ColumnType<Short> |
getColumnType()
|
static ShortFromResultSet |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ShortFromResultSet[] |
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 ShortFromResultSet SHORT_FROM_SHORT
short from the ResultSet using
ResultSet.getShort(int), and adds it to the builder using
ShortColumnBuilder.add(short)public static ShortFromResultSet[] values()
for (ShortFromResultSet c : ShortFromResultSet.values()) System.out.println(c);
public static ShortFromResultSet 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<Short> getColumnType()
IFromResultSetgetColumnType in interface IFromResultSet<Short,ShortColumnBuilder>ColumnType used to create the ColumnBuilderCopyright © 2020. All rights reserved.