public enum S3Operations extends Enum<S3Operations>
Enum Constant and Description |
---|
copyObject |
deleteBucket |
listBuckets |
Modifier and Type | Method and Description |
---|---|
static S3Operations |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static S3Operations[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final S3Operations copyObject
public static final S3Operations deleteBucket
public static final S3Operations listBuckets
public static S3Operations[] values()
for (S3Operations c : S3Operations.values()) System.out.println(c);
public static S3Operations 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 nullApache Camel