Enum Class AuditLogColumn
java.lang.Object
java.lang.Enum<AuditLogColumn>
org.odpi.openmetadata.adapters.repositoryservices.auditlogstore.postgres.schema.AuditLogColumn
- All Implemented Interfaces:
Serializable
,Comparable<AuditLogColumn>
,Constable
,PostgreSQLColumn
Describes the different types of columns found in the audit log database schema
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescription -
Method Summary
Modifier and TypeMethodDescriptionReturn th optional description for the column.retrieve the name of the column.getColumnName
(String tableName) retrieve the qualified name of the column.Return the type of the column.boolean
Return whether the column is not null;static AuditLogColumn
Returns the enum constant of this class with the specified name.static AuditLogColumn[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
LOG_RECORD_ID
-
THREAD_ID
-
SERVER_NAME
-
SERVER_TYPE
-
METADATA_COLLECTION_ID
-
USER_NAME
-
OPERATION_NAME
-
SERVICE_NAME
-
CALL_TIME
-
ASSET_OPERATION
-
ASSET_GUID
-
ASSET_TYPE
-
MESSAGE_TIMESTAMP
-
ACTION_DESCRIPTION
-
SEVERITY_CODE
-
SEVERITY
-
MESSAGE_ID
-
MESSAGE_TEXT
-
MESSAGE_PARAMETERS
-
SYSTEM_ACTION
-
USER_ACTION
-
EXCEPTION_CLASS_NAME
-
EXCEPTION_MESSAGE
-
EXCEPTION_STACK_TRACE
-
ORGANIZATION
-
ADDITIONAL_INFO
-
COMPONENT_ID
-
COMPONENT_NAME
-
COMPONENT_DESCRIPTION
-
COMPONENT_WIKI_URL
-
DEVELOPMENT_STATUS
-
-
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
-
getColumnName
retrieve the name of the column.- Specified by:
getColumnName
in interfacePostgreSQLColumn
- Returns:
- name
-
getColumnName
retrieve the qualified name of the column.- Parameters:
tableName
- name of table- Returns:
- name
-
getColumnType
Return the type of the column.- Specified by:
getColumnType
in interfacePostgreSQLColumn
- Returns:
- ColumnType
-
getColumnDescription
Return th optional description for the column.- Specified by:
getColumnDescription
in interfacePostgreSQLColumn
- Returns:
- text
-
isNotNull
public boolean isNotNull()Return whether the column is not null;- Specified by:
isNotNull
in interfacePostgreSQLColumn
- Returns:
- boolean
-