Enum CommunityProfileOutboundEventType
- java.lang.Object
-
- java.lang.Enum<CommunityProfileOutboundEventType>
-
- org.odpi.openmetadata.accessservices.communityprofile.events.CommunityProfileOutboundEventType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<CommunityProfileOutboundEventType>
public enum CommunityProfileOutboundEventType extends java.lang.Enum<CommunityProfileOutboundEventType> implements java.io.Serializable
CommunityProfileOutboundEventType describes the different types of events produced by the Community Profile OMAS.
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getEventTypeCode()
Return the int identifier used for indexing based on the enum.java.lang.String
getEventTypeDescription()
Return the default description for the enum value - used when natural resource bundle is not available.java.lang.String
getEventTypeName()
Return the string name used for messages that include the enum.java.lang.String
toString()
JSON-style toStringstatic CommunityProfileOutboundEventType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static CommunityProfileOutboundEventType[]
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 CommunityProfileOutboundEventType UNKNOWN_EVENT
-
REFRESH_ELEMENT_EVENT
public static final CommunityProfileOutboundEventType REFRESH_ELEMENT_EVENT
-
NEW_ELEMENT_CREATED
public static final CommunityProfileOutboundEventType NEW_ELEMENT_CREATED
-
ELEMENT_UPDATED
public static final CommunityProfileOutboundEventType ELEMENT_UPDATED
-
ELEMENT_DELETED
public static final CommunityProfileOutboundEventType ELEMENT_DELETED
-
ELEMENT_CLASSIFIED
public static final CommunityProfileOutboundEventType ELEMENT_CLASSIFIED
-
ELEMENT_RECLASSIFIED
public static final CommunityProfileOutboundEventType ELEMENT_RECLASSIFIED
-
ELEMENT_DECLASSIFIED
public static final CommunityProfileOutboundEventType ELEMENT_DECLASSIFIED
-
ELEMENT_RESTORED
public static final CommunityProfileOutboundEventType ELEMENT_RESTORED
-
ELEMENT_GUID_CHANGED
public static final CommunityProfileOutboundEventType ELEMENT_GUID_CHANGED
-
ELEMENT_TYPE_CHANGED
public static final CommunityProfileOutboundEventType ELEMENT_TYPE_CHANGED
-
ELEMENT_HOME_CHANGED
public static final CommunityProfileOutboundEventType ELEMENT_HOME_CHANGED
-
KARMA_POINT_PLATEAU_EVENT
public static final CommunityProfileOutboundEventType KARMA_POINT_PLATEAU_EVENT
-
-
Method Detail
-
values
public static CommunityProfileOutboundEventType[] 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 (CommunityProfileOutboundEventType c : CommunityProfileOutboundEventType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CommunityProfileOutboundEventType 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
-
getEventTypeCode
public int getEventTypeCode()
Return the int identifier used for indexing based on the enum.- Returns:
- int identifier code
-
getEventTypeName
public java.lang.String getEventTypeName()
Return the string name used for messages that include the enum.- Returns:
- String name
-
getEventTypeDescription
public java.lang.String getEventTypeDescription()
Return the default description for the enum value - used when natural resource bundle is not available.- Returns:
- String default description
-
toString
public java.lang.String toString()
JSON-style toString- Overrides:
toString
in classjava.lang.Enum<CommunityProfileOutboundEventType>
- Returns:
- return string containing the property names and values
-
-