Enum Class JDBCConfigurationProperty
java.lang.Object
java.lang.Enum<JDBCConfigurationProperty>
org.odpi.openmetadata.adapters.connectors.integration.jdbc.controls.JDBCConfigurationProperty
- All Implemented Interfaces:
Serializable
,Comparable<JDBCConfigurationProperty>
,Constable
JDBCConfigurationProperty provides definitions for the configuration properties used with the JDBC Integration Connector.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionAn optional property used to provide a display name to a new database asset created by this connector.Provide a comma-separated list of column names that should not be catalogued.Provide a comma-separated list of schema names that should not be catalogued.Provide a comma-separated list of table names that should not be catalogued.Provide a comma-separated list of view names that should not be catalogued.Provide a comma-separated list of column names that should be catalogued.Provide a comma-separated list of schema names that should be catalogued.Provide a comma-separated list of table names that should be catalogued.Provide a comma-separated list of view names that should be catalogued. -
Field Summary
-
Method Summary
Modifier and TypeMethodDescriptionReturn a summary of this enum to use in a connector provider.static List<ConfigurationPropertyType>
Retrieve all the defined configuration propertiesReturn the data type for the configuration property.Return the description of the configuration property.Return an example of the configuration property to help users understand how to set it up.getName()
Return the name of the request parameter.Retrieve all the defined configuration property namesboolean
Return whether this value is required.toString()
Output of this enum class and main value.static JDBCConfigurationProperty
Returns the enum constant of this class with the specified name.static JDBCConfigurationProperty[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
CATALOG
An optional property used to provide a display name to a new database asset created by this connector. -
INCLUDE_SCHEMA_NAMES
Provide a comma-separated list of schema names that should be catalogued. Other schemas will be ignored. -
EXCLUDE_SCHEMA_NAMES
Provide a comma-separated list of schema names that should not be catalogued. Only schemas not in this list will be catalogued. -
INCLUDE_TABLE_NAMES
Provide a comma-separated list of table names that should be catalogued. Other tables will be ignored. -
EXCLUDE_TABLE_NAMES
Provide a comma-separated list of table names that should not be catalogued. Only tables not in this list will be catalogued. -
INCLUDE_VIEW_NAMES
Provide a comma-separated list of view names that should be catalogued. Other views will be ignored. -
EXCLUDE_VIEW_NAMES
Provide a comma-separated list of view names that should not be catalogued. Only views not in this list will be catalogued. -
INCLUDE_COLUMN_NAMES
Provide a comma-separated list of column names that should be catalogued. Other columns will be ignored. -
EXCLUDE_COLUMN_NAMES
Provide a comma-separated list of column names that should not be catalogued. Only columns not in this list will be catalogued.
-
-
Field Details
-
name
-
description
-
dataType
-
example
-
isRequired
public final boolean isRequired
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-
getName
Return the name of the request parameter.- Returns:
- string name
-
getDescription
Return the description of the configuration property.- Returns:
- text
-
getDataType
Return the data type for the configuration property.- Returns:
- data type name
-
getExample
Return an example of the configuration property to help users understand how to set it up.- Returns:
- example
-
isRequired
public boolean isRequired()Return whether this value is required.- Returns:
- boolean
-
getConfigurationPropertyTypes
Retrieve all the defined configuration properties- Returns:
- list of configuration property types
-
getRecognizedConfigurationProperties
Retrieve all the defined configuration property names- Returns:
- list of configuration property types
-
getConfigurationPropertyType
Return a summary of this enum to use in a connector provider.- Returns:
- request parameter type
-
toString
Output of this enum class and main value.- Overrides:
toString
in classEnum<JDBCConfigurationProperty>
- Returns:
- string showing enum value
-