Enum BraintreeApiName
- java.lang.Object
-
- java.lang.Enum<BraintreeApiName>
-
- org.apache.camel.component.braintree.internal.BraintreeApiName
-
- All Implemented Interfaces:
Serializable
,Comparable<BraintreeApiName>
,org.apache.camel.support.component.ApiName
public enum BraintreeApiName extends Enum<BraintreeApiName> implements org.apache.camel.support.component.ApiName
CamelApiName
Enumeration for Component Braintree
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ADD_ON
ADDRESS
CLIENT_TOKEN
CREDIT_CARD_VERIFICATION
CUSTOMER
DISCOUNT
DISPUTE
DOCUMENT_UPLOAD
MERCHANT_ACCOUNT
PAYMENT_METHOD
PAYMENT_METHOD_NONCE
PLAN
REPORT
SETTLEMENT_BATCH_SUMMARY
SUBSCRIPTION
TRANSACTION
WEBHOOK_NOTIFICATION
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getName()
static BraintreeApiName
valueOf(String name)
Returns the enum constant of this type with the specified name.static BraintreeApiName[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ADD_ON
public static final BraintreeApiName ADD_ON
-
ADDRESS
public static final BraintreeApiName ADDRESS
-
CLIENT_TOKEN
public static final BraintreeApiName CLIENT_TOKEN
-
CREDIT_CARD_VERIFICATION
public static final BraintreeApiName CREDIT_CARD_VERIFICATION
-
CUSTOMER
public static final BraintreeApiName CUSTOMER
-
DISCOUNT
public static final BraintreeApiName DISCOUNT
-
DISPUTE
public static final BraintreeApiName DISPUTE
-
DOCUMENT_UPLOAD
public static final BraintreeApiName DOCUMENT_UPLOAD
-
MERCHANT_ACCOUNT
public static final BraintreeApiName MERCHANT_ACCOUNT
-
PAYMENT_METHOD
public static final BraintreeApiName PAYMENT_METHOD
-
PAYMENT_METHOD_NONCE
public static final BraintreeApiName PAYMENT_METHOD_NONCE
-
PLAN
public static final BraintreeApiName PLAN
-
REPORT
public static final BraintreeApiName REPORT
-
SETTLEMENT_BATCH_SUMMARY
public static final BraintreeApiName SETTLEMENT_BATCH_SUMMARY
-
SUBSCRIPTION
public static final BraintreeApiName SUBSCRIPTION
-
TRANSACTION
public static final BraintreeApiName TRANSACTION
-
WEBHOOK_NOTIFICATION
public static final BraintreeApiName WEBHOOK_NOTIFICATION
-
-
Method Detail
-
values
public static BraintreeApiName[] 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 (BraintreeApiName c : BraintreeApiName.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static BraintreeApiName 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
-
getName
public String getName()
- Specified by:
getName
in interfaceorg.apache.camel.support.component.ApiName
-
-