public static enum Schema.DBType extends Enum<Schema.DBType>
| Modifier and Type | Method and Description |
|---|---|
static Schema.DBType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Schema.DBType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Schema.DBType HSQL
public static final Schema.DBType MySQL
public static final Schema.DBType ORACLE
public static Schema.DBType[] values()
for (Schema.DBType c : Schema.DBType.values()) System.out.println(c);
public static Schema.DBType 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 Apache Software Foundation. All rights reserved.