public enum EventTypeEnum extends Enum<EventTypeEnum>
Enum Constant and Description |
---|
OBJECT_CREATED_ALL
All events for creating objects
|
OBJECT_CREATED_COMPLETE_MULTIPART_UPLOAD
Events for combining parts
|
OBJECT_CREATED_COPY
Events for copying objects
|
OBJECT_CREATED_POST
POST Object events
|
OBJECT_CREATED_PUT
PUT Object events
|
OBJECT_REMOVED_ALL
All events for deleting objects
|
OBJECT_REMOVED_DELETE
Events for deleting objects by specifying object version IDs
|
OBJECT_REMOVED_DELETE_MARKER_CREATED
Events for deleting objects without specifying version IDs after versioning is enabled
|
Modifier and Type | Method and Description |
---|---|
static EventTypeEnum |
getValueFromCode(String code) |
static EventTypeEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EventTypeEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EventTypeEnum OBJECT_CREATED_ALL
public static final EventTypeEnum OBJECT_CREATED_PUT
public static final EventTypeEnum OBJECT_CREATED_POST
public static final EventTypeEnum OBJECT_CREATED_COPY
public static final EventTypeEnum OBJECT_CREATED_COMPLETE_MULTIPART_UPLOAD
public static final EventTypeEnum OBJECT_REMOVED_ALL
public static final EventTypeEnum OBJECT_REMOVED_DELETE
public static final EventTypeEnum OBJECT_REMOVED_DELETE_MARKER_CREATED
public static EventTypeEnum[] values()
for (EventTypeEnum c : EventTypeEnum.values()) System.out.println(c);
public static EventTypeEnum 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 nullpublic static EventTypeEnum getValueFromCode(String code)
Copyright © 2019. All rights reserved.