Package cdc.rdb
Enum RdbDatabase.IntegerProperty
- java.lang.Object
-
- java.lang.Enum<RdbDatabase.IntegerProperty>
-
- cdc.rdb.RdbDatabase.IntegerProperty
-
- All Implemented Interfaces:
Serializable,Comparable<RdbDatabase.IntegerProperty>
- Enclosing class:
- RdbDatabase
public static enum RdbDatabase.IntegerProperty extends Enum<RdbDatabase.IntegerProperty>
Enumeration of integer properties.- Author:
- Damien Carbonne
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetMethodName()static RdbDatabase.IntegerPropertyvalueOf(String name)Returns the enum constant of this type with the specified name.static RdbDatabase.IntegerProperty[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SQL_STATE_TYPE
public static final RdbDatabase.IntegerProperty SQL_STATE_TYPE
-
RESULT_SET_HOLDABILITY
public static final RdbDatabase.IntegerProperty RESULT_SET_HOLDABILITY
-
DATABASE_MAJOR_VERSION
public static final RdbDatabase.IntegerProperty DATABASE_MAJOR_VERSION
-
DATABASE_MINOR_VERSION
public static final RdbDatabase.IntegerProperty DATABASE_MINOR_VERSION
-
DEFAULT_TRANSACTION_ISOLATION
public static final RdbDatabase.IntegerProperty DEFAULT_TRANSACTION_ISOLATION
-
DRIVER_MAJOR_VERSION
public static final RdbDatabase.IntegerProperty DRIVER_MAJOR_VERSION
-
DRIVER_MINOR_VERSION
public static final RdbDatabase.IntegerProperty DRIVER_MINOR_VERSION
-
JDBC_MAJOR_VERSION
public static final RdbDatabase.IntegerProperty JDBC_MAJOR_VERSION
-
JDBC_MINOR_VERSION
public static final RdbDatabase.IntegerProperty JDBC_MINOR_VERSION
-
MAX_BINARY_LITERAL_LENGTH
public static final RdbDatabase.IntegerProperty MAX_BINARY_LITERAL_LENGTH
-
MAX_CATALOG_NAME_LENGTH
public static final RdbDatabase.IntegerProperty MAX_CATALOG_NAME_LENGTH
-
MAX_CHAR_LITERAL_LENGTH
public static final RdbDatabase.IntegerProperty MAX_CHAR_LITERAL_LENGTH
-
MAX_COLUMN_NAME_LENGTH
public static final RdbDatabase.IntegerProperty MAX_COLUMN_NAME_LENGTH
-
MAX_COLUMNS_IN_GROUP_BY
public static final RdbDatabase.IntegerProperty MAX_COLUMNS_IN_GROUP_BY
-
MAX_COLUMNS_IN_INDEX
public static final RdbDatabase.IntegerProperty MAX_COLUMNS_IN_INDEX
-
MAX_COLUMNS_IN_ORDER_BY
public static final RdbDatabase.IntegerProperty MAX_COLUMNS_IN_ORDER_BY
-
MAX_COLUMNS_IN_SELECT
public static final RdbDatabase.IntegerProperty MAX_COLUMNS_IN_SELECT
-
MAX_COLUMNS_IN_TABLE
public static final RdbDatabase.IntegerProperty MAX_COLUMNS_IN_TABLE
-
MAX_CONNECTIONS
public static final RdbDatabase.IntegerProperty MAX_CONNECTIONS
-
MAX_CURSOR_NAME_LENGTH
public static final RdbDatabase.IntegerProperty MAX_CURSOR_NAME_LENGTH
-
MAX_INDEX_LENGTH
public static final RdbDatabase.IntegerProperty MAX_INDEX_LENGTH
-
MAX_PROCEDURE_NAME_LENGTH
public static final RdbDatabase.IntegerProperty MAX_PROCEDURE_NAME_LENGTH
-
MAX_ROW_SIZE
public static final RdbDatabase.IntegerProperty MAX_ROW_SIZE
-
MAX_SCHEMA_NAME_LENGTH
public static final RdbDatabase.IntegerProperty MAX_SCHEMA_NAME_LENGTH
-
MAX_STATEMENT_LENGTH
public static final RdbDatabase.IntegerProperty MAX_STATEMENT_LENGTH
-
MAX_STATEMENTS
public static final RdbDatabase.IntegerProperty MAX_STATEMENTS
-
MAX_TABLE_NAME_LENGTH
public static final RdbDatabase.IntegerProperty MAX_TABLE_NAME_LENGTH
-
MAX_TABLES_IN_SELECT
public static final RdbDatabase.IntegerProperty MAX_TABLES_IN_SELECT
-
MAX_USER_NAME_LENGTH
public static final RdbDatabase.IntegerProperty MAX_USER_NAME_LENGTH
-
-
Method Detail
-
values
public static RdbDatabase.IntegerProperty[] 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 (RdbDatabase.IntegerProperty c : RdbDatabase.IntegerProperty.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static RdbDatabase.IntegerProperty 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
-
getMethodName
public String getMethodName()
-
-