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