public enum JdbcColumnTypes extends Enum<JdbcColumnTypes>
| Enum Constant and Description |
|---|
INSTANCE |
| Modifier and Type | Method and Description |
|---|---|
abstract Class<?> |
resolvePrimitiveType(Class<?> type) |
static JdbcColumnTypes |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JdbcColumnTypes[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JdbcColumnTypes INSTANCE
public static JdbcColumnTypes[] values()
for (JdbcColumnTypes c : JdbcColumnTypes.values()) System.out.println(c);
public static JdbcColumnTypes 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 nullCopyright © 2017–2021 Pivotal Software, Inc.. All rights reserved.