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