Enum GovernanceEngineEventType
- java.lang.Object
-
- java.lang.Enum<GovernanceEngineEventType>
-
- org.odpi.openmetadata.accessservices.governanceengine.events.GovernanceEngineEventType
-
- All Implemented Interfaces:
Serializable,Comparable<GovernanceEngineEventType>
public enum GovernanceEngineEventType extends Enum<GovernanceEngineEventType> implements Serializable
GovernanceEngineEventType describes the different types of events produced by the Governance Engine OMAS. Events are used to configure the governance servers supporting governance engines (in Egeria these are Open Metadata Engine Services (OMES) running in an Engine Host OMAG Server).
-
-
Enum Constant Summary
Enum Constants Enum Constant Description REFRESH_GOVERNANCE_ENGINE_EVENTREFRESH_GOVERNANCE_SERVICE_EVENTREQUESTED_GOVERNANCE_ACTION_EVENTUNKNOWN_GOVERNANCE_ENGINE_EVENTWATCHDOG_GOVERNANCE_SERVICE_EVENT
-
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 GovernanceEngineEventTypevalueOf(String name)Returns the enum constant of this type with the specified name.static GovernanceEngineEventType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UNKNOWN_GOVERNANCE_ENGINE_EVENT
public static final GovernanceEngineEventType UNKNOWN_GOVERNANCE_ENGINE_EVENT
-
REFRESH_GOVERNANCE_ENGINE_EVENT
public static final GovernanceEngineEventType REFRESH_GOVERNANCE_ENGINE_EVENT
-
REFRESH_GOVERNANCE_SERVICE_EVENT
public static final GovernanceEngineEventType REFRESH_GOVERNANCE_SERVICE_EVENT
-
WATCHDOG_GOVERNANCE_SERVICE_EVENT
public static final GovernanceEngineEventType WATCHDOG_GOVERNANCE_SERVICE_EVENT
-
REQUESTED_GOVERNANCE_ACTION_EVENT
public static final GovernanceEngineEventType REQUESTED_GOVERNANCE_ACTION_EVENT
-
-
Method Detail
-
values
public static GovernanceEngineEventType[] 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 (GovernanceEngineEventType c : GovernanceEngineEventType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static GovernanceEngineEventType 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<GovernanceEngineEventType>- Returns:
- return string containing the property names and values
-
-