public enum GoogleCloudFunctionsOperations extends Enum<GoogleCloudFunctionsOperations>
| Enum Constant and Description |
|---|
callFunction |
createFunction |
deleteFunction |
generateDownloadUrl |
generateUploadUrl |
getFunction |
listFunctions |
updateFunction |
| Modifier and Type | Method and Description |
|---|---|
static GoogleCloudFunctionsOperations |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GoogleCloudFunctionsOperations[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GoogleCloudFunctionsOperations listFunctions
public static final GoogleCloudFunctionsOperations getFunction
public static final GoogleCloudFunctionsOperations callFunction
public static final GoogleCloudFunctionsOperations generateDownloadUrl
public static final GoogleCloudFunctionsOperations generateUploadUrl
public static final GoogleCloudFunctionsOperations createFunction
public static final GoogleCloudFunctionsOperations updateFunction
public static final GoogleCloudFunctionsOperations deleteFunction
public static GoogleCloudFunctionsOperations[] values()
for (GoogleCloudFunctionsOperations c : GoogleCloudFunctionsOperations.values()) System.out.println(c);
public static GoogleCloudFunctionsOperations 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