public enum S3Operations extends Enum<S3Operations>
Enum Constant and Description |
---|
copyObject |
deleteBucket |
deleteObject |
downloadLink |
listBuckets |
listObjects |
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 listObjects
public static final S3Operations deleteObject
public static final S3Operations deleteBucket
public static final S3Operations listBuckets
public static final S3Operations downloadLink
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