public enum PaymentGateway extends Enum<PaymentGateway>
| Enum Constant and Description |
|---|
ADYEN |
AMAZON_PAYMENTS |
AUTHORIZENET |
BALANCED |
BRAINTREE |
EWAY |
PAYPAL |
STRIPE |
| Modifier and Type | Method and Description |
|---|---|
String |
getSiftScienceValue() |
static PaymentGateway |
resolve(String siftScienceValue) |
static PaymentGateway |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PaymentGateway[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PaymentGateway STRIPE
public static final PaymentGateway BRAINTREE
public static final PaymentGateway PAYPAL
public static final PaymentGateway AMAZON_PAYMENTS
public static final PaymentGateway AUTHORIZENET
public static final PaymentGateway BALANCED
public static final PaymentGateway EWAY
public static final PaymentGateway ADYEN
public static PaymentGateway[] values()
for (PaymentGateway c : PaymentGateway.values()) System.out.println(c);
public static PaymentGateway 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 getSiftScienceValue()
public static PaymentGateway resolve(String siftScienceValue)
Copyright © 2014. All rights reserved.