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