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