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