Enum Class AtlasAuditOperation
java.lang.Object
java.lang.Enum<AtlasAuditOperation>
org.odpi.openmetadata.adapters.connectors.apacheatlas.resource.properties.AtlasAuditOperation
- All Implemented Interfaces:
Serializable
,Comparable<AtlasAuditOperation>
,Constable
AtlasAuditOperation describes the operation that an audit event describes.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionInstances have been exported.Instances have been imported.Import delete replica?An instance has been purged.Atlas has started.Atlas is activeNew type createdA type has been deleted.Existing type updated. -
Method Summary
Modifier and TypeMethodDescriptiongetType()
Return the string name of the operation.static AtlasAuditOperation
Returns the enum constant of this class with the specified name.static AtlasAuditOperation[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
PURGE
An instance has been purged. -
EXPORT
Instances have been exported. -
IMPORT
Instances have been imported. -
IMPORT_DELETE_REPL
Import delete replica? -
TYPE_DEF_CREATE
New type created -
TYPE_DEF_UPDATE
Existing type updated. -
TYPE_DEF_DELETE
A type has been deleted. -
SERVER_START
Atlas has started. -
SERVER_STATE_ACTIVE
Atlas is active
-
-
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
-
getType
Return the string name of the operation.- Returns:
- name
-