public enum CustomerGatewayApiMethod extends Enum<CustomerGatewayApiMethod> implements org.apache.camel.util.component.ApiMethod
ApiMethod
Enumeration for com.braintreegateway.CustomerGatewayEnum Constant and Description |
---|
ALL |
CREATE |
DELETE |
FIND |
FIND_1 |
SEARCH |
UPDATE |
Modifier and Type | Method and Description |
---|---|
List<String> |
getArgNames() |
List<Class<?>> |
getArgTypes() |
Method |
getMethod() |
String |
getName() |
Class<?> |
getResultType() |
static CustomerGatewayApiMethod |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CustomerGatewayApiMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CustomerGatewayApiMethod ALL
public static final CustomerGatewayApiMethod CREATE
public static final CustomerGatewayApiMethod DELETE
public static final CustomerGatewayApiMethod FIND
public static final CustomerGatewayApiMethod FIND_1
public static final CustomerGatewayApiMethod SEARCH
public static final CustomerGatewayApiMethod UPDATE
public static CustomerGatewayApiMethod[] values()
for (CustomerGatewayApiMethod c : CustomerGatewayApiMethod.values()) System.out.println(c);
public static CustomerGatewayApiMethod 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 nullpublic String getName()
getName
in interface org.apache.camel.util.component.ApiMethod
public Class<?> getResultType()
getResultType
in interface org.apache.camel.util.component.ApiMethod
public List<String> getArgNames()
getArgNames
in interface org.apache.camel.util.component.ApiMethod
public List<Class<?>> getArgTypes()
getArgTypes
in interface org.apache.camel.util.component.ApiMethod
public Method getMethod()
getMethod
in interface org.apache.camel.util.component.ApiMethod
Apache Camel