Enum Class AssetOwnerEventType
java.lang.Object
java.lang.Enum<AssetOwnerEventType>
org.odpi.openmetadata.accessservices.assetowner.events.AssetOwnerEventType
- All Implemented Interfaces:
Serializable
,Comparable<AssetOwnerEventType>
,Constable
AssetOwnerEventType describes the different types of events produced by the Asset Owner OMAS.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionA classification has been added to an element.A classification has been removed from an element.An element and all its anchored elements have been deleted.An element's GUID has changed.An element's home has changed.The properties for a classification attached to an element have been updated.An element that was once deleted has been restored.An element's type has changed.An element's properties has been updated.A new element has been created.An element has been distributed around the cohort - could be for the first time.An event that is not recognized by the local server. -
Method Summary
Modifier and TypeMethodDescriptionint
Return the int identifier used for indexing based on the enum.Return the default description for the enum value - used when natural resource bundle is not available.Return the string name used for messages that include the enum.toString()
JSON-style toStringstatic AssetOwnerEventType
Returns the enum constant of this class with the specified name.static AssetOwnerEventType[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
UNKNOWN_EVENT
An event that is not recognized by the local server. -
REFRESH_ELEMENT_EVENT
An element has been distributed around the cohort - could be for the first time. -
NEW_ELEMENT_CREATED
A new element has been created. -
ELEMENT_UPDATED
An element's properties has been updated. -
ELEMENT_DELETED
An element and all its anchored elements have been deleted. -
ELEMENT_CLASSIFIED
A classification has been added to an element. -
ELEMENT_RECLASSIFIED
The properties for a classification attached to an element have been updated. -
ELEMENT_DECLASSIFIED
A classification has been removed from an element. -
ELEMENT_RESTORED
An element that was once deleted has been restored. -
ELEMENT_GUID_CHANGED
An element's GUID has changed. -
ELEMENT_TYPE_CHANGED
An element's type has changed. -
ELEMENT_HOME_CHANGED
An element's home has changed.
-
-
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
-
getEventTypeCode
public int getEventTypeCode()Return the int identifier used for indexing based on the enum.- Returns:
- int identifier code
-
getEventTypeName
Return the string name used for messages that include the enum.- Returns:
- String name
-
getEventTypeDescription
Return the default description for the enum value - used when natural resource bundle is not available.- Returns:
- String default description
-
toString
JSON-style toString- Overrides:
toString
in classEnum<AssetOwnerEventType>
- Returns:
- return string containing the property names and values
-