Package org.duracloud.audit.task
Enum AuditTask.ActionType
- java.lang.Object
-
- java.lang.Enum<AuditTask.ActionType>
-
- org.duracloud.audit.task.AuditTask.ActionType
-
- All Implemented Interfaces:
Serializable,Comparable<AuditTask.ActionType>
- Enclosing class:
- AuditTask
public static enum AuditTask.ActionType extends Enum<AuditTask.ActionType>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static AuditTask.ActionTypevalueOf(String name)Returns the enum constant of this type with the specified name.static AuditTask.ActionType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CREATE_SPACE
public static final AuditTask.ActionType CREATE_SPACE
-
DELETE_SPACE
public static final AuditTask.ActionType DELETE_SPACE
-
SET_SPACE_ACLS
public static final AuditTask.ActionType SET_SPACE_ACLS
-
ADD_CONTENT
public static final AuditTask.ActionType ADD_CONTENT
-
COPY_CONTENT
public static final AuditTask.ActionType COPY_CONTENT
-
DELETE_CONTENT
public static final AuditTask.ActionType DELETE_CONTENT
-
SET_CONTENT_PROPERTIES
public static final AuditTask.ActionType SET_CONTENT_PROPERTIES
-
GET_SPACES
public static final AuditTask.ActionType GET_SPACES
-
GET_SPACE_CONTENTS
public static final AuditTask.ActionType GET_SPACE_CONTENTS
-
GET_SPACE_CONTENTS_CHUNKED
public static final AuditTask.ActionType GET_SPACE_CONTENTS_CHUNKED
-
GET_SPACE_PROPERTIES
public static final AuditTask.ActionType GET_SPACE_PROPERTIES
-
GET_SPACE_ACLS
public static final AuditTask.ActionType GET_SPACE_ACLS
-
GET_CONTENT
public static final AuditTask.ActionType GET_CONTENT
-
GET_CONTENT_PROPERTIES
public static final AuditTask.ActionType GET_CONTENT_PROPERTIES
-
-
Method Detail
-
values
public static AuditTask.ActionType[] 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 (AuditTask.ActionType c : AuditTask.ActionType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AuditTask.ActionType 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
-
-