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