public enum EventType extends Enum<EventType>
Modifier and Type | Class and Description |
---|---|
static class |
EventType.EventTypeConverter
XML converter class.
|
Modifier and Type | Method and Description |
---|---|
static EventType |
fromString(String eventTypeString)
Returns EventType of given string.
|
String |
toString() |
static EventType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EventType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EventType OBJECT_CREATED_ANY
public static final EventType OBJECT_CREATED_PUT
public static final EventType OBJECT_CREATED_POST
public static final EventType OBJECT_CREATED_COPY
public static final EventType OBJECT_CREATED_COMPLETE_MULTIPART_UPLOAD
public static final EventType OBJECT_ACCESSED_GET
public static final EventType OBJECT_ACCESSED_HEAD
public static final EventType OBJECT_ACCESSED_ANY
public static final EventType OBJECT_REMOVED_ANY
public static final EventType OBJECT_REMOVED_DELETE
public static final EventType OBJECT_REMOVED_DELETED_MARKER_CREATED
public static final EventType REPLICATION_ANY
public static final EventType REPLICATION_OPERATION_FAILED_REPLICATION
public static final EventType REPLICATION_OPERATION_COMPLETED_REPLICATION
public static final EventType REPLICATION_OPERATION_NOT_TRACKED
public static final EventType REPLICATION_OPERATION_MISSED_THRESHOLD
public static final EventType REPLICATION_OPERATION_REPLICATED_AFTER_THRESHOLD
public static final EventType REDUCED_REDUNDANCY_LOST_OBJECT
public static final EventType BUCKET_CREATED
public static final EventType BUCKET_REMOVED
public static EventType[] values()
for (EventType c : EventType.values()) System.out.println(c);
public static EventType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null