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