Enum SecurityOfficerEventType
- java.lang.Object
-
- java.lang.Enum<SecurityOfficerEventType>
-
- org.odpi.openmetadata.accessservices.securityofficer.api.events.SecurityOfficerEventType
-
- All Implemented Interfaces:
Serializable,Comparable<SecurityOfficerEventType>
public enum SecurityOfficerEventType extends Enum<SecurityOfficerEventType> implements Serializable
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DE_CLASSIFIED_ASSETDELETED_ASSETDELETED_SECURITY_ASSIGNMENTNEW_CLASSIFIED_ASSETNEW_SECURITY_ASSIGNMENTRE_CLASSIFIED_ASSETUNKNOWN_SECURITY_OFFICER_EVENTUPDATED_SECURITY_ASSIGNMENT
-
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.static SecurityOfficerEventTypevalueOf(String name)Returns the enum constant of this type with the specified name.static SecurityOfficerEventType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NEW_SECURITY_ASSIGNMENT
public static final SecurityOfficerEventType NEW_SECURITY_ASSIGNMENT
-
UPDATED_SECURITY_ASSIGNMENT
public static final SecurityOfficerEventType UPDATED_SECURITY_ASSIGNMENT
-
DELETED_SECURITY_ASSIGNMENT
public static final SecurityOfficerEventType DELETED_SECURITY_ASSIGNMENT
-
NEW_CLASSIFIED_ASSET
public static final SecurityOfficerEventType NEW_CLASSIFIED_ASSET
-
RE_CLASSIFIED_ASSET
public static final SecurityOfficerEventType RE_CLASSIFIED_ASSET
-
DE_CLASSIFIED_ASSET
public static final SecurityOfficerEventType DE_CLASSIFIED_ASSET
-
DELETED_ASSET
public static final SecurityOfficerEventType DELETED_ASSET
-
UNKNOWN_SECURITY_OFFICER_EVENT
public static final SecurityOfficerEventType UNKNOWN_SECURITY_OFFICER_EVENT
-
-
Method Detail
-
values
public static SecurityOfficerEventType[] 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 (SecurityOfficerEventType c : SecurityOfficerEventType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SecurityOfficerEventType 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
-
-