Package cdc.rdb
Enum RdbDatabase.StringProperty
- java.lang.Object
-
- java.lang.Enum<RdbDatabase.StringProperty>
-
- cdc.rdb.RdbDatabase.StringProperty
-
- All Implemented Interfaces:
Serializable,Comparable<RdbDatabase.StringProperty>
- Enclosing class:
- RdbDatabase
public static enum RdbDatabase.StringProperty extends Enum<RdbDatabase.StringProperty>
Enumeration of string 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.StringPropertyvalueOf(String name)Returns the enum constant of this type with the specified name.static RdbDatabase.StringProperty[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CATALOG_SEPARATOR
public static final RdbDatabase.StringProperty CATALOG_SEPARATOR
-
CATALOG_TERM
public static final RdbDatabase.StringProperty CATALOG_TERM
-
DATABASE_PRODUCT_NAME
public static final RdbDatabase.StringProperty DATABASE_PRODUCT_NAME
-
DATABASE_PRODUCT_VERSION
public static final RdbDatabase.StringProperty DATABASE_PRODUCT_VERSION
-
DRIVER_NAME
public static final RdbDatabase.StringProperty DRIVER_NAME
-
DRIVER_VERSION
public static final RdbDatabase.StringProperty DRIVER_VERSION
-
EXTRA_NAME_CHARACTERS
public static final RdbDatabase.StringProperty EXTRA_NAME_CHARACTERS
-
IDENTIFIER_QUOTE_STRING
public static final RdbDatabase.StringProperty IDENTIFIER_QUOTE_STRING
-
NUMERIC_FUNCTIONS
public static final RdbDatabase.StringProperty NUMERIC_FUNCTIONS
-
PROCEDURE_TERM
public static final RdbDatabase.StringProperty PROCEDURE_TERM
-
SCHEMA_TERM
public static final RdbDatabase.StringProperty SCHEMA_TERM
-
SEARCH_STRING_ESCAPE
public static final RdbDatabase.StringProperty SEARCH_STRING_ESCAPE
-
SQL_KEYWORDS
public static final RdbDatabase.StringProperty SQL_KEYWORDS
-
STRING_FUNCTIONS
public static final RdbDatabase.StringProperty STRING_FUNCTIONS
-
SYSTEM_FUNCTIONS
public static final RdbDatabase.StringProperty SYSTEM_FUNCTIONS
-
TIME_DATE_FUNCTIONS
public static final RdbDatabase.StringProperty TIME_DATE_FUNCTIONS
-
URL
public static final RdbDatabase.StringProperty URL
-
USER_NAME
public static final RdbDatabase.StringProperty USER_NAME
-
-
Method Detail
-
values
public static RdbDatabase.StringProperty[] 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.StringProperty c : RdbDatabase.StringProperty.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.StringProperty 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()
-
-