Package com.javahollic.jira.emh.api
Enum IJEMHDataTypes.ProfileAuditEventType
- java.lang.Object
-
- java.lang.Enum<IJEMHDataTypes.ProfileAuditEventType>
-
- com.javahollic.jira.emh.api.IJEMHDataTypes.ProfileAuditEventType
-
- All Implemented Interfaces:
Serializable
,Comparable<IJEMHDataTypes.ProfileAuditEventType>
- Enclosing interface:
- IJEMHDataTypes
public static enum IJEMHDataTypes.ProfileAuditEventType extends Enum<IJEMHDataTypes.ProfileAuditEventType>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static IJEMHDataTypes.ProfileAuditEventType
valueOf(String name)
Returns the enum constant of this type with the specified name.static IJEMHDataTypes.ProfileAuditEventType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UPDATE
public static final IJEMHDataTypes.ProfileAuditEventType UPDATE
-
DELETE
public static final IJEMHDataTypes.ProfileAuditEventType DELETE
-
CREATE
public static final IJEMHDataTypes.ProfileAuditEventType CREATE
-
COPY
public static final IJEMHDataTypes.ProfileAuditEventType COPY
-
IMPORT
public static final IJEMHDataTypes.ProfileAuditEventType IMPORT
-
RESTORE
public static final IJEMHDataTypes.ProfileAuditEventType RESTORE
-
-
Method Detail
-
values
public static IJEMHDataTypes.ProfileAuditEventType[] 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 (IJEMHDataTypes.ProfileAuditEventType c : IJEMHDataTypes.ProfileAuditEventType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static IJEMHDataTypes.ProfileAuditEventType 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
-
-