Enum AssetManagerEventType
- java.lang.Object
-
- java.lang.Enum<AssetManagerEventType>
-
- org.odpi.openmetadata.accessservices.assetmanager.events.AssetManagerEventType
-
- All Implemented Interfaces:
Serializable,Comparable<AssetManagerEventType>
public enum AssetManagerEventType extends Enum<AssetManagerEventType> implements Serializable
AssetManagerEventType describes the different types of events produced by the Asset Manager OMAS.
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetEventTypeCode()Return the int identifier used for indexing based on the enum.StringgetEventTypeDescription()Return the default description for the enum value - used when natural resource bundle is not available.StringgetEventTypeName()Return the string name used for messages that include the enum.StringtoString()JSON-style toStringstatic AssetManagerEventTypevalueOf(String name)Returns the enum constant of this type with the specified name.static AssetManagerEventType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UNKNOWN_ASSET_MANAGER_EVENT
public static final AssetManagerEventType UNKNOWN_ASSET_MANAGER_EVENT
-
REFRESH_ELEMENT_EVENT
public static final AssetManagerEventType REFRESH_ELEMENT_EVENT
-
NEW_GLOSSARY_CREATED
public static final AssetManagerEventType NEW_GLOSSARY_CREATED
-
GLOSSARY_UPDATED
public static final AssetManagerEventType GLOSSARY_UPDATED
-
GLOSSARY_DELETED
public static final AssetManagerEventType GLOSSARY_DELETED
-
GLOSSARY_CLASSIFIED
public static final AssetManagerEventType GLOSSARY_CLASSIFIED
-
GLOSSARY_RECLASSIFIED
public static final AssetManagerEventType GLOSSARY_RECLASSIFIED
-
GLOSSARY_DECLASSIFIED
public static final AssetManagerEventType GLOSSARY_DECLASSIFIED
-
NEW_CATEGORY_ADDED_TO_GLOSSARY
public static final AssetManagerEventType NEW_CATEGORY_ADDED_TO_GLOSSARY
-
CATEGORY_UPDATED_IN_GLOSSARY
public static final AssetManagerEventType CATEGORY_UPDATED_IN_GLOSSARY
-
CATEGORY_DELETED_FROM_GLOSSARY
public static final AssetManagerEventType CATEGORY_DELETED_FROM_GLOSSARY
-
CATEGORY_CLASSIFIED
public static final AssetManagerEventType CATEGORY_CLASSIFIED
-
CATEGORY_RECLASSIFIED
public static final AssetManagerEventType CATEGORY_RECLASSIFIED
-
CATEGORY_DECLASSIFIED
public static final AssetManagerEventType CATEGORY_DECLASSIFIED
-
CATEGORY_ATTACHED_TO_GLOSSARY_CATEGORY
public static final AssetManagerEventType CATEGORY_ATTACHED_TO_GLOSSARY_CATEGORY
-
CATEGORY_DETACHED_FROM_GLOSSARY_CATEGORY
public static final AssetManagerEventType CATEGORY_DETACHED_FROM_GLOSSARY_CATEGORY
-
NEW_TERM_ADDED_TO_GLOSSARY
public static final AssetManagerEventType NEW_TERM_ADDED_TO_GLOSSARY
-
TERM_UPDATED_IN_GLOSSARY
public static final AssetManagerEventType TERM_UPDATED_IN_GLOSSARY
-
TERM_DELETED_FROM_GLOSSARY
public static final AssetManagerEventType TERM_DELETED_FROM_GLOSSARY
-
TERM_CLASSIFIED
public static final AssetManagerEventType TERM_CLASSIFIED
-
TERM_RECLASSIFIED
public static final AssetManagerEventType TERM_RECLASSIFIED
-
TERM_DECLASSIFIED
public static final AssetManagerEventType TERM_DECLASSIFIED
-
TERM_ATTACHED_TO_GLOSSARY_CATEGORY
public static final AssetManagerEventType TERM_ATTACHED_TO_GLOSSARY_CATEGORY
-
TERM_REATTACHED_TO_GLOSSARY_CATEGORY
public static final AssetManagerEventType TERM_REATTACHED_TO_GLOSSARY_CATEGORY
-
TERM_DETACHED_FROM_GLOSSARY_CATEGORY
public static final AssetManagerEventType TERM_DETACHED_FROM_GLOSSARY_CATEGORY
-
TERM_TO_TERM_RELATIONSHIP_ADDED_TO_GLOSSARY
public static final AssetManagerEventType TERM_TO_TERM_RELATIONSHIP_ADDED_TO_GLOSSARY
-
TERM_TO_TERM_RELATIONSHIP_UPDATED
public static final AssetManagerEventType TERM_TO_TERM_RELATIONSHIP_UPDATED
-
TERM_TO_TERM_RELATIONSHIP_DELETED_FROM_GLOSSARY
public static final AssetManagerEventType TERM_TO_TERM_RELATIONSHIP_DELETED_FROM_GLOSSARY
-
-
Method Detail
-
values
public static AssetManagerEventType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (AssetManagerEventType c : AssetManagerEventType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AssetManagerEventType valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type 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
public String getEventTypeName()
Return the string name used for messages that include the enum.- Returns:
- String name
-
getEventTypeDescription
public String getEventTypeDescription()
Return the default description for the enum value - used when natural resource bundle is not available.- Returns:
- String default description
-
toString
public String toString()
JSON-style toString- Overrides:
toStringin classEnum<AssetManagerEventType>- Returns:
- return string containing the property names and values
-
-