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