public static enum ExtractedDatabaseMetaData.SQLStateType extends Enum<ExtractedDatabaseMetaData.SQLStateType>
| Enum Constant and Description |
|---|
SQL99
The reported codes follow the SQL spec
|
UNKOWN
It is unknown.
|
XOpen
The reported codes follow the X/Open spec
|
| Modifier and Type | Method and Description |
|---|---|
static ExtractedDatabaseMetaData.SQLStateType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExtractedDatabaseMetaData.SQLStateType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExtractedDatabaseMetaData.SQLStateType XOpen
public static final ExtractedDatabaseMetaData.SQLStateType SQL99
public static final ExtractedDatabaseMetaData.SQLStateType UNKOWN
public static ExtractedDatabaseMetaData.SQLStateType[] values()
for (ExtractedDatabaseMetaData.SQLStateType c : ExtractedDatabaseMetaData.SQLStateType.values()) System.out.println(c);
public static ExtractedDatabaseMetaData.SQLStateType 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.