Enum SubjectAreaEventType
- java.lang.Object
-
- java.lang.Enum<SubjectAreaEventType>
-
- org.odpi.openmetadata.accessservices.subjectarea.events.SubjectAreaEventType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<SubjectAreaEventType>
public enum SubjectAreaEventType extends java.lang.Enum<SubjectAreaEventType> implements java.io.Serializable
SubjectAreaEventType describes the different types of org.odpi.openmetadata.accessservices.subjectarea.common.events produced by the Subject Area 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.static SubjectAreaEventType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static SubjectAreaEventType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UNKNOWN_SUBJECTAREA_EVENT
public static final SubjectAreaEventType UNKNOWN_SUBJECTAREA_EVENT
-
NEW_GLOSSARYTERM_EVENT
public static final SubjectAreaEventType NEW_GLOSSARYTERM_EVENT
-
UPDATED_GLOSSARYYERM_EVENT
public static final SubjectAreaEventType UPDATED_GLOSSARYYERM_EVENT
-
DELETED_GLOSSARYTERM_EVENT
public static final SubjectAreaEventType DELETED_GLOSSARYTERM_EVENT
-
CREATED_RELATIONSHIP_FOR_GLOSSARYTERM_EVENT
public static final SubjectAreaEventType CREATED_RELATIONSHIP_FOR_GLOSSARYTERM_EVENT
-
UPDATED_RELATIONSHIP_FOR_GLOSSARYTERM_EVENT
public static final SubjectAreaEventType UPDATED_RELATIONSHIP_FOR_GLOSSARYTERM_EVENT
-
DELETED_RELATIONSHIP_FOR_GLOSSARYTERM_EVENT
public static final SubjectAreaEventType DELETED_RELATIONSHIP_FOR_GLOSSARYTERM_EVENT
-
CLASSIFICATION_CHANGE_GLOSSARYTERM_EVENT
public static final SubjectAreaEventType CLASSIFICATION_CHANGE_GLOSSARYTERM_EVENT
-
COMMENT_CHANGED_RELATING_TO_TERM
public static final SubjectAreaEventType COMMENT_CHANGED_RELATING_TO_TERM
-
RATING_CHANGED_RELATING_TO_TERM
public static final SubjectAreaEventType RATING_CHANGED_RELATING_TO_TERM
-
TAG_CHANGED_RELATING_TO_TERM
public static final SubjectAreaEventType TAG_CHANGED_RELATING_TO_TERM
-
TODO_CHANGED_RELATING_TO_TERM
public static final SubjectAreaEventType TODO_CHANGED_RELATING_TO_TERM
-
NOTE_CHANGED_RELATING_TO_TERM
public static final SubjectAreaEventType NOTE_CHANGED_RELATING_TO_TERM
-
MEETING_CHANGED_RELATING_TO_TERM
public static final SubjectAreaEventType MEETING_CHANGED_RELATING_TO_TERM
-
COLLECTION_CHANGED_RELATING_TO_TERM
public static final SubjectAreaEventType COLLECTION_CHANGED_RELATING_TO_TERM
-
ASSET_CHANGED_RELATING_TO_TERM
public static final SubjectAreaEventType ASSET_CHANGED_RELATING_TO_TERM
-
NEW_GLOSSARYCATEGORY_EVENT
public static final SubjectAreaEventType NEW_GLOSSARYCATEGORY_EVENT
-
UPDATED_GLOSSARYCATEGORY_EVENT
public static final SubjectAreaEventType UPDATED_GLOSSARYCATEGORY_EVENT
-
DELETED_GLOSSARYCATEGORY_EVENT
public static final SubjectAreaEventType DELETED_GLOSSARYCATEGORY_EVENT
-
CREATED_RELATIONSHIP_FOR_GLOSSARYCATEGORY_EVENT
public static final SubjectAreaEventType CREATED_RELATIONSHIP_FOR_GLOSSARYCATEGORY_EVENT
-
UPDATED_RELATIONSHIP_FOR_GLOSSARYCATEGORY_EVENT
public static final SubjectAreaEventType UPDATED_RELATIONSHIP_FOR_GLOSSARYCATEGORY_EVENT
-
DELETED_RELATIONSHIP_FOR_GLOSSARYCATEGORY_EVENT
public static final SubjectAreaEventType DELETED_RELATIONSHIP_FOR_GLOSSARYCATEGORY_EVENT
-
CLASSIFICATION_CHANGE_GLOSSARYCATERGORY_EVENT
public static final SubjectAreaEventType CLASSIFICATION_CHANGE_GLOSSARYCATERGORY_EVENT
-
COMMENT_CHANGED_RELATING_TO_CATEGORY
public static final SubjectAreaEventType COMMENT_CHANGED_RELATING_TO_CATEGORY
-
RATING_CHANGED_RELATING_TO_CATEGORY
public static final SubjectAreaEventType RATING_CHANGED_RELATING_TO_CATEGORY
-
TAG_CHANGED_RELATING_TO_CATEGORY
public static final SubjectAreaEventType TAG_CHANGED_RELATING_TO_CATEGORY
-
TODO_CHANGED_RELATING_TO_CATEGORY
public static final SubjectAreaEventType TODO_CHANGED_RELATING_TO_CATEGORY
-
NOTE_CHANGED_RELATING_TO_CATEGORY
public static final SubjectAreaEventType NOTE_CHANGED_RELATING_TO_CATEGORY
-
MEETING_CHANGED_RELATING_TO_CATEGORY
public static final SubjectAreaEventType MEETING_CHANGED_RELATING_TO_CATEGORY
-
COLLECTION_CHANGED_RELATING_TO_CATEGORY
public static final SubjectAreaEventType COLLECTION_CHANGED_RELATING_TO_CATEGORY
-
NEW_GLOSSARY_EVENT
public static final SubjectAreaEventType NEW_GLOSSARY_EVENT
-
UPDATED_GLOSSARY_EVENT
public static final SubjectAreaEventType UPDATED_GLOSSARY_EVENT
-
DELETED_GLOSSARY_EVENT
public static final SubjectAreaEventType DELETED_GLOSSARY_EVENT
-
CREATED_RELATIONSHIP_FOR_GLOSSARY_EVENT
public static final SubjectAreaEventType CREATED_RELATIONSHIP_FOR_GLOSSARY_EVENT
-
UPDATED_RELATIONSHIP_FOR_GLOSSARY_EVENT
public static final SubjectAreaEventType UPDATED_RELATIONSHIP_FOR_GLOSSARY_EVENT
-
DELETED_RELATIONSHIP_FOR_GLOSSARY_EVENT
public static final SubjectAreaEventType DELETED_RELATIONSHIP_FOR_GLOSSARY_EVENT
-
CLASSIFICATION_CHANGE_GLOSSARY_EVENT
public static final SubjectAreaEventType CLASSIFICATION_CHANGE_GLOSSARY_EVENT
-
COMMENT_CHANGED_RELATING_TO_GLOSSARY
public static final SubjectAreaEventType COMMENT_CHANGED_RELATING_TO_GLOSSARY
-
RATING_CHANGED_RELATING_TO_GLOSSARY
public static final SubjectAreaEventType RATING_CHANGED_RELATING_TO_GLOSSARY
-
TAG_CHANGED_RELATING_TO_GLOSSARY
public static final SubjectAreaEventType TAG_CHANGED_RELATING_TO_GLOSSARY
-
TODO_CHANGED_RELATING_TO_GLOSSARY
public static final SubjectAreaEventType TODO_CHANGED_RELATING_TO_GLOSSARY
-
NOTE_CHANGED_RELATING_TO_GLOSSARY
public static final SubjectAreaEventType NOTE_CHANGED_RELATING_TO_GLOSSARY
-
MEETING_CHANGED_RELATING_TO_GLOSSARY
public static final SubjectAreaEventType MEETING_CHANGED_RELATING_TO_GLOSSARY
-
COLLECTION_CHANGED_RELATING_TO_GLOSSARY
public static final SubjectAreaEventType COLLECTION_CHANGED_RELATING_TO_GLOSSARY
-
-
Method Detail
-
values
public static SubjectAreaEventType[] 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 (SubjectAreaEventType c : SubjectAreaEventType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SubjectAreaEventType 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
-
-