Enum WatchdogEventType
- java.lang.Object
-
- java.lang.Enum<WatchdogEventType>
-
- org.odpi.openmetadata.frameworks.governanceaction.events.WatchdogEventType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<WatchdogEventType>
public enum WatchdogEventType extends java.lang.Enum<WatchdogEventType>
WatchdogEventType describes the type of event that the WatchdogGovernanceActionService can listen for.
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getDescription()
Return the description for the enum.java.lang.String
getName()
Return the descriptive name for the enum.int
getOrdinal()
Return the numerical value for the enum.java.lang.String
toString()
toString() JSON-stylestatic WatchdogEventType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static WatchdogEventType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UNKNOWN_EVENT
public static final WatchdogEventType UNKNOWN_EVENT
-
NEW_ELEMENT
public static final WatchdogEventType NEW_ELEMENT
-
REFRESHED_ELEMENT
public static final WatchdogEventType REFRESHED_ELEMENT
-
UPDATED_ELEMENT_PROPERTIES
public static final WatchdogEventType UPDATED_ELEMENT_PROPERTIES
-
NEW_CLASSIFICATION
public static final WatchdogEventType NEW_CLASSIFICATION
-
UPDATED_CLASSIFICATION_PROPERTIES
public static final WatchdogEventType UPDATED_CLASSIFICATION_PROPERTIES
-
DELETED_CLASSIFICATION
public static final WatchdogEventType DELETED_CLASSIFICATION
-
DELETED_ELEMENT
public static final WatchdogEventType DELETED_ELEMENT
-
ELEMENT_RESTORED
public static final WatchdogEventType ELEMENT_RESTORED
-
NEW_RELATIONSHIP
public static final WatchdogEventType NEW_RELATIONSHIP
-
REFRESHED_RELATIONSHIP
public static final WatchdogEventType REFRESHED_RELATIONSHIP
-
UPDATED_RELATIONSHIP_PROPERTIES
public static final WatchdogEventType UPDATED_RELATIONSHIP_PROPERTIES
-
RELATIONSHIP_GUID_CHANGED
public static final WatchdogEventType RELATIONSHIP_GUID_CHANGED
-
RELATIONSHIP_TYPE_CHANGED
public static final WatchdogEventType RELATIONSHIP_TYPE_CHANGED
-
RELATIONSHIP_HOME_CHANGED
public static final WatchdogEventType RELATIONSHIP_HOME_CHANGED
-
DELETED_RELATIONSHIP
public static final WatchdogEventType DELETED_RELATIONSHIP
-
-
Method Detail
-
values
public static WatchdogEventType[] 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 (WatchdogEventType c : WatchdogEventType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static WatchdogEventType valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
getOrdinal
public int getOrdinal()
Return the numerical value for the enum.- Returns:
- int enum value ordinal
-
getName
public java.lang.String getName()
Return the descriptive name for the enum.- Returns:
- String name
-
getDescription
public java.lang.String getDescription()
Return the description for the enum.- Returns:
- String description
-
toString
public java.lang.String toString()
toString() JSON-style- Overrides:
toString
in classjava.lang.Enum<WatchdogEventType>
- Returns:
- string description
-
-