com.chargebee.models.enums
Enum Gateway

java.lang.Object
  extended by java.lang.Enum<Gateway>
      extended by com.chargebee.models.enums.Gateway
All Implemented Interfaces:
Serializable, Comparable<Gateway>

public enum Gateway
extends Enum<Gateway>


Enum Constant Summary
_UNKNOWN
           
AUTHORIZE_NET
           
BALANCED_PAYMENTS
           
BEANSTREAM
           
BLUEPAY
           
BRAINTREE
           
CHARGEBEE
           
ELAVON
           
EWAY
           
EWAY_RAPID
           
FIRST_DATA_GLOBAL
           
GOCARDLESS
           
HDFC
           
MIGS
           
NMI
           
NOT_APPLICABLE
           
OGONE
           
PAYMILL
           
PAYPAL_PAYFLOW_PRO
           
PAYPAL_PRO
           
PIN
           
SAGE_PAY
           
STRIPE
           
TCO
           
WEPAY
           
WIRECARD
           
WORLDPAY
           
 
Method Summary
static Gateway valueOf(String name)
          Returns the enum constant of this type with the specified name.
static Gateway[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

CHARGEBEE

public static final Gateway CHARGEBEE

STRIPE

public static final Gateway STRIPE

WEPAY

public static final Gateway WEPAY

BRAINTREE

public static final Gateway BRAINTREE

AUTHORIZE_NET

public static final Gateway AUTHORIZE_NET

PAYPAL_PRO

public static final Gateway PAYPAL_PRO

PIN

public static final Gateway PIN

EWAY

public static final Gateway EWAY

EWAY_RAPID

public static final Gateway EWAY_RAPID

WORLDPAY

public static final Gateway WORLDPAY

BALANCED_PAYMENTS

public static final Gateway BALANCED_PAYMENTS

BEANSTREAM

public static final Gateway BEANSTREAM

BLUEPAY

public static final Gateway BLUEPAY

ELAVON

public static final Gateway ELAVON

FIRST_DATA_GLOBAL

public static final Gateway FIRST_DATA_GLOBAL

HDFC

public static final Gateway HDFC

MIGS

public static final Gateway MIGS

NMI

public static final Gateway NMI

OGONE

public static final Gateway OGONE

PAYMILL

public static final Gateway PAYMILL

PAYPAL_PAYFLOW_PRO

public static final Gateway PAYPAL_PAYFLOW_PRO

SAGE_PAY

public static final Gateway SAGE_PAY

TCO

public static final Gateway TCO

WIRECARD

public static final Gateway WIRECARD

GOCARDLESS

public static final Gateway GOCARDLESS

NOT_APPLICABLE

public static final Gateway NOT_APPLICABLE

_UNKNOWN

public static final Gateway _UNKNOWN
Method Detail

values

public static Gateway[] 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 (Gateway c : Gateway.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static Gateway 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 name
NullPointerException - if the argument is null


Copyright © 2017 ChargeBee. All Rights Reserved.