Enum GoogleCloudStorageOperations
- java.lang.Object
-
- java.lang.Enum<GoogleCloudStorageOperations>
-
- org.apache.camel.component.google.storage.GoogleCloudStorageOperations
-
- All Implemented Interfaces:
Serializable,Comparable<GoogleCloudStorageOperations>
public enum GoogleCloudStorageOperations extends Enum<GoogleCloudStorageOperations>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description copyObjectcreateDownloadLinkdeleteBucketdeleteObjectgetObjectlistBucketslistObjects
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static GoogleCloudStorageOperationsvalueOf(String name)Returns the enum constant of this type with the specified name.static GoogleCloudStorageOperations[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
copyObject
public static final GoogleCloudStorageOperations copyObject
-
listObjects
public static final GoogleCloudStorageOperations listObjects
-
deleteObject
public static final GoogleCloudStorageOperations deleteObject
-
deleteBucket
public static final GoogleCloudStorageOperations deleteBucket
-
listBuckets
public static final GoogleCloudStorageOperations listBuckets
-
getObject
public static final GoogleCloudStorageOperations getObject
-
createDownloadLink
public static final GoogleCloudStorageOperations createDownloadLink
-
-
Method Detail
-
values
public static GoogleCloudStorageOperations[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (GoogleCloudStorageOperations c : GoogleCloudStorageOperations.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static GoogleCloudStorageOperations valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-