Enum AuditElements.EventCategoryType
- java.lang.Object
-
- java.lang.Enum<AuditElements.EventCategoryType>
-
- org.apache.syncope.common.lib.types.AuditElements.EventCategoryType
-
- All Implemented Interfaces:
Serializable
,Comparable<AuditElements.EventCategoryType>
- Enclosing class:
- AuditElements
public static enum AuditElements.EventCategoryType extends Enum<AuditElements.EventCategoryType>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static AuditElements.EventCategoryType
valueOf(String name)
Returns the enum constant of this type with the specified name.static AuditElements.EventCategoryType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
LOGIC
public static final AuditElements.EventCategoryType LOGIC
-
WA
public static final AuditElements.EventCategoryType WA
-
TASK
public static final AuditElements.EventCategoryType TASK
-
REPORT
public static final AuditElements.EventCategoryType REPORT
-
PROPAGATION
public static final AuditElements.EventCategoryType PROPAGATION
-
PULL
public static final AuditElements.EventCategoryType PULL
-
PUSH
public static final AuditElements.EventCategoryType PUSH
-
CUSTOM
public static final AuditElements.EventCategoryType CUSTOM
-
-
Method Detail
-
values
public static AuditElements.EventCategoryType[] 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 (AuditElements.EventCategoryType c : AuditElements.EventCategoryType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AuditElements.EventCategoryType 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
-
-