Enum WatchdogEventType
- java.lang.Object
-
- java.lang.Enum<WatchdogEventType>
-
- org.odpi.openmetadata.frameworks.governanceaction.events.WatchdogEventType
-
- All Implemented Interfaces:
Serializable,Comparable<WatchdogEventType>
public enum WatchdogEventType extends 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 StringgetDescription()Return the description for the enum.StringgetName()Return the descriptive name for the enum.intgetOrdinal()Return the numerical value for the enum.StringtoString()toString() JSON-stylestatic WatchdogEventTypevalueOf(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
-
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
-
DELETED_ELEMENT
public static final WatchdogEventType DELETED_ELEMENT
-
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
-
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
-
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(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
-
getOrdinal
public int getOrdinal()
Return the numerical value for the enum.- Returns:
- int enum value ordinal
-
getName
public String getName()
Return the descriptive name for the enum.- Returns:
- String name
-
getDescription
public String getDescription()
Return the description for the enum.- Returns:
- String description
-
toString
public String toString()
toString() JSON-style- Overrides:
toStringin classEnum<WatchdogEventType>- Returns:
- string description
-
-