Interface DatastoreIdentifier
-
- All Known Implementing Classes:
DatastoreIdentifierImpl
public interface DatastoreIdentifierRepresentation of a datastore identifier in an RDBMS datastore. This can be something like a table name, column name, index name etc.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetCatalogName()Accessor for the catalogStringgetFullyQualifiedName(boolean adapterCase)Accessor for the fully-qualified name.StringgetName()Provides the name (with no quotes).StringgetSchemaName()Accessor for the schemavoidsetCatalogName(String catalogName)Sets the catalogvoidsetSchemaName(String schemaName)Sets the schemaStringtoString()Method to output the name of the identifier.
-
-
-
Method Detail
-
getName
String getName()
Provides the name (with no quotes).- Returns:
- The name
-
setCatalogName
void setCatalogName(String catalogName)
Sets the catalog- Parameters:
catalogName- The catalog
-
setSchemaName
void setSchemaName(String schemaName)
Sets the schema- Parameters:
schemaName- The schema
-
getCatalogName
String getCatalogName()
Accessor for the catalog- Returns:
- The catalog
-
getSchemaName
String getSchemaName()
Accessor for the schema- Returns:
- The schema
-
getFullyQualifiedName
String getFullyQualifiedName(boolean adapterCase)
Accessor for the fully-qualified name.- Parameters:
adapterCase- Whether to return the name in adapter case (upper/lower and with quotes etc)- Returns:
- Fully qualified name
-
-