public enum S3Event extends Enum<S3Event>
Modifier and Type | Method and Description |
---|---|
static S3Event |
fromValue(String value) |
String |
toString() |
static S3Event |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static S3Event[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final S3Event ReducedRedundancyLostObject
public static final S3Event ObjectCreated
public static final S3Event ObjectCreatedByPut
public static final S3Event ObjectCreatedByPost
public static final S3Event ObjectCreatedByCopy
public static final S3Event ObjectCreatedByCompleteMultipartUpload
public static final S3Event ObjectRemoved
public static final S3Event ObjectRemovedDelete
public static final S3Event ObjectRemovedDeleteMarkerCreated
public static final S3Event Replication
public static final S3Event ReplicationOperationFailed
public static final S3Event ReplicationOperationNotTracked
public static final S3Event ReplicationOperationMissedThreshold
public static final S3Event ReplicationOperationReplicatedAfterThreshold
public static S3Event[] values()
for (S3Event c : S3Event.values()) System.out.println(c);
public static S3Event 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 S3Event fromValue(String value)
value
- real valueIllegalArgumentException
- If the specified value does not map to one of the known values in this enum.Copyright © 2024. All rights reserved.