public enum EventType extends Enum<EventType>
| Modifier and Type | Method and Description |
|---|---|
static EventType |
fromString(String eventTypeString)
Returns EventType of given string.
|
static List<EventType> |
fromStringList(List<String> eventList)
Returns List<EventType> of given List<String>.
|
String |
toString() |
static List<String> |
toStringList(List<EventType> eventTypeList)
Returns List<String> of given List<EventType>.
|
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_REMOVED_ANY
public static final EventType OBJECT_REMOVED_DELETE
public static final EventType OBJECT_REMOVED_DELETED_MARKER_CREATED
public static final EventType REDUCED_REDUNDANCY_LOST_OBJECT
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 nullpublic static EventType fromString(String eventTypeString) throws InvalidArgumentException
InvalidArgumentExceptionpublic static List<EventType> fromStringList(List<String> eventList) throws InvalidArgumentException
InvalidArgumentException