public enum QueryDBMetadata extends Enum<QueryDBMetadata>
| Enum Constant and Description |
|---|
GET_CATALOGS |
GET_COLUMNS |
GET_SCHEMAS |
GET_TABLE_TYPES |
GET_TABLES |
| Modifier and Type | Method and Description |
|---|---|
List<String> |
getColumnNames() |
List<Integer> |
getColumnTypeIds() |
List<String> |
getColumnTypes() |
static QueryDBMetadata |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static QueryDBMetadata[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final QueryDBMetadata GET_TABLE_TYPES
public static final QueryDBMetadata GET_CATALOGS
public static final QueryDBMetadata GET_SCHEMAS
public static final QueryDBMetadata GET_TABLES
public static final QueryDBMetadata GET_COLUMNS
public static QueryDBMetadata[] values()
for (QueryDBMetadata c : QueryDBMetadata.values()) System.out.println(c);
public static QueryDBMetadata 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 © 2025. All rights reserved.