Class RelationalTable
java.lang.Object
org.odpi.openmetadata.accessservices.dataengine.model.Referenceable
org.odpi.openmetadata.accessservices.dataengine.model.RelationalTable
- All Implemented Interfaces:
Serializable
RelationalTable entity is a table within a relational database schema type.
- See Also:
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprotected boolean
boolean
Returns list of aliases of the relational table.Returns list of columns of the relational table.Returns the description of the relational table.Returns the display name of the relational table.boolean
Return if the table is incompleteboolean
Returns if the relational table if deprecated.getType()
Returns the type of the relational table.int
hashCode()
void
setAliases
(List<String> aliases) Sets up the list of aliases of the relational table.void
setColumns
(List<RelationalColumn> columns) Sets up the list of columns of the relational table.void
setDescription
(String description) Sets up the description of the relational table.void
setDisplayName
(String displayName) Sets up the display name of the relational table.void
setIncomplete
(boolean incomplete) Sets up if the table is incompletevoid
setIsDeprecated
(boolean isDeprecated) Sets up the value that determines if the relational table if deprecated.void
Sets up the type of the relational table.toString()
Methods inherited from class org.odpi.openmetadata.accessservices.dataengine.model.Referenceable
getAdditionalProperties, getQualifiedName, setAdditionalProperties, setQualifiedName
-
Constructor Details
-
RelationalTable
public RelationalTable()
-
-
Method Details
-
equals
- Overrides:
equals
in classReferenceable
-
canEqual
- Overrides:
canEqual
in classReferenceable
-
hashCode
public int hashCode()- Overrides:
hashCode
in classReferenceable
-
toString
- Overrides:
toString
in classReferenceable
-
getDisplayName
Returns the display name of the relational table.- Returns:
- display name
-
getType
Returns the type of the relational table.- Returns:
- type
-
getAliases
Returns list of aliases of the relational table.- Returns:
- aliases
-
getIsDeprecated
public boolean getIsDeprecated()Returns if the relational table if deprecated.- Returns:
- if the relational table if deprecated
-
getDescription
Returns the description of the relational table.- Returns:
- description
-
getColumns
Returns list of columns of the relational table.- Returns:
- columns
-
getIncomplete
public boolean getIncomplete()Return if the table is incomplete- Returns:
- if the table is incomplete
-
setDisplayName
Sets up the display name of the relational table.- Parameters:
displayName
- display name
-
setType
Sets up the type of the relational table.- Parameters:
type
- type
-
setAliases
Sets up the list of aliases of the relational table.- Parameters:
aliases
- aliases
-
setIsDeprecated
public void setIsDeprecated(boolean isDeprecated) Sets up the value that determines if the relational table if deprecated.- Parameters:
isDeprecated
- value saying if the relational table if deprecated
-
setDescription
Sets up the description of the relational table.- Parameters:
description
- description
-
setColumns
Sets up the list of columns of the relational table.- Parameters:
columns
- columns
-
setIncomplete
public void setIncomplete(boolean incomplete) Sets up if the table is incomplete- Parameters:
incomplete
- if the table is incomplete
-