Changes since
the last release

com.ebay.soap.eBLBaseComponents
Enum SellerPaymentMethodCodeType

java.lang.Object
  extended by java.lang.Enum<SellerPaymentMethodCodeType>
      extended by com.ebay.soap.eBLBaseComponents.SellerPaymentMethodCodeType
All Implemented Interfaces:
Serializable, Comparable<SellerPaymentMethodCodeType>

public enum SellerPaymentMethodCodeType
extends Enum<SellerPaymentMethodCodeType>

Java class for SellerPaymentMethodCodeType.

The following schema fragment specifies the expected content contained within this class.

 <simpleType name="SellerPaymentMethodCodeType">
   <restriction base="{http://www.w3.org/2001/XMLSchema}token">
     <enumeration value="NothingOnFile"/>
     <enumeration value="CreditCard"/>
     <enumeration value="PayPal"/>
     <enumeration value="DirectDebit"/>
     <enumeration value="DirectDebitPendingSignatureMandate"/>
     <enumeration value="eBayDirectPay"/>
     <enumeration value="CustomCode"/>
     <enumeration value="DirectDebitPendingVerification"/>
   </restriction>
 </simpleType>
 
Note: Per JAXB standards, underscores are added to separate words in enumerations (e.g., PayPal becomes PAY_PAL).


Enum Constant Summary
CREDIT_CARD
          Credit Card
CUSTOM_CODE
          (out) Reserved for internal or future use
DIRECT_DEBIT
          Direct Debit
DIRECT_DEBIT_PENDING_SIGNATURE_MANDATE
          Direct Debit, pending signature mandate
DIRECT_DEBIT_PENDING_VERIFICATION
          Direct Debit, pending verification
E_BAY_DIRECT_PAY
          eBay Direct Pay
NOTHING_ON_FILE
          Used for all other payment methods which are not specifically listed in other columns.
PAY_PAL
          PayPal
 
Method Summary
static SellerPaymentMethodCodeType fromValue(String v)
           
 String value()
           
static SellerPaymentMethodCodeType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static SellerPaymentMethodCodeType[] 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

NOTHING_ON_FILE

public static final SellerPaymentMethodCodeType NOTHING_ON_FILE
Used for all other payment methods which are not specifically listed in other columns.


CREDIT_CARD

public static final SellerPaymentMethodCodeType CREDIT_CARD
Credit Card


PAY_PAL

public static final SellerPaymentMethodCodeType PAY_PAL
PayPal


DIRECT_DEBIT

public static final SellerPaymentMethodCodeType DIRECT_DEBIT
Direct Debit


DIRECT_DEBIT_PENDING_SIGNATURE_MANDATE

public static final SellerPaymentMethodCodeType DIRECT_DEBIT_PENDING_SIGNATURE_MANDATE
Direct Debit, pending signature mandate


E_BAY_DIRECT_PAY

public static final SellerPaymentMethodCodeType E_BAY_DIRECT_PAY
eBay Direct Pay


CUSTOM_CODE

public static final SellerPaymentMethodCodeType CUSTOM_CODE
(out) Reserved for internal or future use


DIRECT_DEBIT_PENDING_VERIFICATION

public static final SellerPaymentMethodCodeType DIRECT_DEBIT_PENDING_VERIFICATION
Direct Debit, pending verification

Method Detail

values

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

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

valueOf

public static SellerPaymentMethodCodeType 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

value

public String value()

fromValue

public static SellerPaymentMethodCodeType fromValue(String v)

Changes since
the last release

The information contained in this document is proprietary and confidential. Use of this information and the eBay API requires a Non-Disclosure Agreement (NDA) between the user and eBay Inc. For information regarding a qualifying NDA, contact Developer Relations: developer-relations@ebay.com
© 2004-2009 eBay Inc. All rights reserved.