public enum EventTypeEnum extends Enum<EventTypeEnum>
| Enum Constant and Description |
|---|
OBJECT_CREATED_ALL
所有创建对象事件。
|
OBJECT_CREATED_COMPLETE_MULTIPART_UPLOAD
合并段事件。
|
OBJECT_CREATED_COPY
复制对象事件。
|
OBJECT_CREATED_POST
POST上传对象事件。
|
OBJECT_CREATED_PUT
PUT上传对象事件。
|
OBJECT_REMOVED_ALL
所有删除对象事件。
|
OBJECT_REMOVED_DELETE
指定对象版本号删除对象事件。
|
OBJECT_REMOVED_DELETE_MARKER_CREATED
多版本开启后,不指定对象版本号删除对象事件。
|
| 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 © 2021. All rights reserved.