yarfraw.generated.googlebase.elements
Enum PaymentMethodEnumeration

java.lang.Object
  extended by java.lang.Enum<PaymentMethodEnumeration>
      extended by yarfraw.generated.googlebase.elements.PaymentMethodEnumeration
All Implemented Interfaces:
Serializable, Comparable<PaymentMethodEnumeration>

public enum PaymentMethodEnumeration
extends Enum<PaymentMethodEnumeration>

Java class for paymentMethodEnumeration.

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

 <simpleType name="paymentMethodEnumeration">
   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
     <enumeration value="Cash"/>
     <enumeration value="Check"/>
     <enumeration value="Visa"/>
     <enumeration value="MasterCard"/>
     <enumeration value="Discover"/>
     <enumeration value="AmericanExpress"/>
     <enumeration value="WireTransfer"/>
     <enumeration value="PayPal"/>
   </restriction>
 </simpleType>
 


Enum Constant Summary
AMERICAN_EXPRESS
           
CASH
           
CHECK
           
DISCOVER
           
MASTER_CARD
           
PAY_PAL
           
VISA
           
WIRE_TRANSFER
           
 
Method Summary
static PaymentMethodEnumeration fromValue(String v)
           
 String value()
           
static PaymentMethodEnumeration valueOf(String name)
          Returns the enum constant of this type with the specified name.
static PaymentMethodEnumeration[] 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

CASH

public static final PaymentMethodEnumeration CASH

CHECK

public static final PaymentMethodEnumeration CHECK

VISA

public static final PaymentMethodEnumeration VISA

MASTER_CARD

public static final PaymentMethodEnumeration MASTER_CARD

DISCOVER

public static final PaymentMethodEnumeration DISCOVER

AMERICAN_EXPRESS

public static final PaymentMethodEnumeration AMERICAN_EXPRESS

WIRE_TRANSFER

public static final PaymentMethodEnumeration WIRE_TRANSFER

PAY_PAL

public static final PaymentMethodEnumeration PAY_PAL
Method Detail

values

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

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

valueOf

public static PaymentMethodEnumeration 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 PaymentMethodEnumeration fromValue(String v)


Copyright © 2008. All Rights Reserved.