public static enum Schema.ColumnType extends Enum<Schema.ColumnType>
| Enum Constant and Description |
|---|
BigDecimal |
Blob |
Boolean |
Clob |
Date |
Double |
Float |
Integer |
Long |
StringFixed |
StringVar |
| Modifier and Type | Method and Description |
|---|---|
static Schema.ColumnType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Schema.ColumnType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Schema.ColumnType Integer
public static final Schema.ColumnType Long
public static final Schema.ColumnType Float
public static final Schema.ColumnType Double
public static final Schema.ColumnType BigDecimal
public static final Schema.ColumnType StringVar
public static final Schema.ColumnType StringFixed
public static final Schema.ColumnType Clob
public static final Schema.ColumnType Blob
public static final Schema.ColumnType Date
public static final Schema.ColumnType Boolean
public static Schema.ColumnType[] values()
for (Schema.ColumnType c : Schema.ColumnType.values()) System.out.println(c);
public static Schema.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 © 2016. All rights reserved.