Package adams.db
Enum MetaDataType
- java.lang.Object
-
- java.lang.Enum<MetaDataType>
-
- adams.db.MetaDataType
-
- All Implemented Interfaces:
Serializable
,Comparable<MetaDataType>
public enum MetaDataType extends Enum<MetaDataType>
The types of available meta-data.
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static MetaDataType
valueOf(String name)
Returns the enum constant of this type with the specified name.static MetaDataType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BASIC
public static final MetaDataType BASIC
-
CONNECTION
public static final MetaDataType CONNECTION
-
ATTRIBUTES
public static final MetaDataType ATTRIBUTES
-
CATALOGS
public static final MetaDataType CATALOGS
-
CLIENT_INFO_PROPERTIES
public static final MetaDataType CLIENT_INFO_PROPERTIES
-
COLUMN_PRIVILEGES
public static final MetaDataType COLUMN_PRIVILEGES
-
COLUMNS
public static final MetaDataType COLUMNS
-
EXPORTED_KEYS
public static final MetaDataType EXPORTED_KEYS
-
FUNCTION_COLUMNS
public static final MetaDataType FUNCTION_COLUMNS
-
FUNCTIONS
public static final MetaDataType FUNCTIONS
-
IMPORTED_KEYS
public static final MetaDataType IMPORTED_KEYS
-
INDEX_INFO
public static final MetaDataType INDEX_INFO
-
PRIMARY_KEYS
public static final MetaDataType PRIMARY_KEYS
-
PROCEDURE_COLUMNS
public static final MetaDataType PROCEDURE_COLUMNS
-
PROCEDURES
public static final MetaDataType PROCEDURES
-
PSEUDO_COLUMNS
public static final MetaDataType PSEUDO_COLUMNS
-
SCHEMAS
public static final MetaDataType SCHEMAS
-
SUPER_TABLES
public static final MetaDataType SUPER_TABLES
-
SUPER_TYPES
public static final MetaDataType SUPER_TYPES
-
TABLES
public static final MetaDataType TABLES
-
TABLE_TYPES
public static final MetaDataType TABLE_TYPES
-
TYPE_INFO
public static final MetaDataType TYPE_INFO
-
USER_DEFINED_TYPES
public static final MetaDataType USER_DEFINED_TYPES
-
VERSION_COLUMNS
public static final MetaDataType VERSION_COLUMNS
-
-
Method Detail
-
values
public static MetaDataType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (MetaDataType c : MetaDataType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MetaDataType valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-