paypalnvp.request
Enum SetExpressCheckout.LocalCode

java.lang.Object
  extended by java.lang.Enum<SetExpressCheckout.LocalCode>
      extended by paypalnvp.request.SetExpressCheckout.LocalCode
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<SetExpressCheckout.LocalCode>
Enclosing class:
SetExpressCheckout

public static enum SetExpressCheckout.LocalCode
extends java.lang.Enum<SetExpressCheckout.LocalCode>

Locale of pages displayed by PayPal during Express Checkout.


Enum Constant Summary
AT
          Austria
AU
          Australia
BE
          Belgium
CA
          Canada
CH
          Switzerland
CN
          China
DE
          Germany
ES
          Spain
FR
          France
GB
          United Kingdom
IT
          Italy
NL
          Netherlands
PL
          Poland
US
          United States
 
Method Summary
static SetExpressCheckout.LocalCode valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static SetExpressCheckout.LocalCode[] 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

AU

public static final SetExpressCheckout.LocalCode AU
Australia


AT

public static final SetExpressCheckout.LocalCode AT
Austria


BE

public static final SetExpressCheckout.LocalCode BE
Belgium


CA

public static final SetExpressCheckout.LocalCode CA
Canada


CH

public static final SetExpressCheckout.LocalCode CH
Switzerland


CN

public static final SetExpressCheckout.LocalCode CN
China


DE

public static final SetExpressCheckout.LocalCode DE
Germany


ES

public static final SetExpressCheckout.LocalCode ES
Spain


GB

public static final SetExpressCheckout.LocalCode GB
United Kingdom


FR

public static final SetExpressCheckout.LocalCode FR
France


IT

public static final SetExpressCheckout.LocalCode IT
Italy


NL

public static final SetExpressCheckout.LocalCode NL
Netherlands


PL

public static final SetExpressCheckout.LocalCode PL
Poland


US

public static final SetExpressCheckout.LocalCode US
United States

Method Detail

values

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

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

valueOf

public static SetExpressCheckout.LocalCode valueOf(java.lang.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:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null