Enum GlossaryArtifactsRelatedEntityType
- java.lang.Object
-
- java.lang.Enum<GlossaryArtifactsRelatedEntityType>
-
- org.odpi.openmetadata.accessservices.subjectarea.events.GlossaryArtifactsRelatedEntityType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<GlossaryArtifactsRelatedEntityType>
public enum GlossaryArtifactsRelatedEntityType extends java.lang.Enum<GlossaryArtifactsRelatedEntityType> implements java.io.Serializable
GlossaryArtifactsRelatedEntityType describes the different types of entity that can change related to Glossaries , Glossary Categories and Glossary Terms.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ASSET
COLLECTION
COMMENT
INFORMAL_TAG
MEETING
NOTE
TODO
UNKNOWN
-
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 GlossaryArtifactsRelatedEntityType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static GlossaryArtifactsRelatedEntityType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UNKNOWN
public static final GlossaryArtifactsRelatedEntityType UNKNOWN
-
COLLECTION
public static final GlossaryArtifactsRelatedEntityType COLLECTION
-
TODO
public static final GlossaryArtifactsRelatedEntityType TODO
-
MEETING
public static final GlossaryArtifactsRelatedEntityType MEETING
-
INFORMAL_TAG
public static final GlossaryArtifactsRelatedEntityType INFORMAL_TAG
-
COMMENT
public static final GlossaryArtifactsRelatedEntityType COMMENT
-
NOTE
public static final GlossaryArtifactsRelatedEntityType NOTE
-
ASSET
public static final GlossaryArtifactsRelatedEntityType ASSET
-
-
Method Detail
-
values
public static GlossaryArtifactsRelatedEntityType[] 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 (GlossaryArtifactsRelatedEntityType c : GlossaryArtifactsRelatedEntityType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static GlossaryArtifactsRelatedEntityType 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
-
-