public static enum SqlColumn.ColumnType extends Enum<SqlColumn.ColumnType>
| Modifier and Type | Method and Description |
|---|---|
static SqlColumn.ColumnType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SqlColumn.ColumnType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SqlColumn.ColumnType INT
public static final SqlColumn.ColumnType STRING
public static final SqlColumn.ColumnType BOOL
public static SqlColumn.ColumnType[] values()
for (SqlColumn.ColumnType c : SqlColumn.ColumnType.values()) System.out.println(c);
public static SqlColumn.ColumnType 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 © 2018. All rights reserved.