public enum OrderApplicationContextLandingPage extends Enum<OrderApplicationContextLandingPage>
| Enum Constant and Description |
|---|
_UNKNOWN
Unknown values will be mapped by this enum member
|
BILLING
When the customer clicks PayPal Checkout, the customer is redirected to a page to enter credit or debit card and other relevant billing information required to complete the purchase.
|
LOGIN
When the customer clicks PayPal Checkout, the customer is redirected to a page to log in to PayPal and approve the payment.
|
NO_PREFERENCE
When the customer clicks PayPal Checkout, the customer is redirected to either a page to log in to PayPal and approve the payment or to a page to enter credit or debit card and other relevant billing information required to complete the purchase, depending on their previous interaction with PayPal.
|
| Modifier and Type | Method and Description |
|---|---|
static OrderApplicationContextLandingPage |
constructFromString(String toConvert)
Returns the enum member associated with the given string value.
|
static OrderApplicationContextLandingPage |
fromString(String toConvert)
Returns the enum member associated with the given string value.
|
String |
toString()
Get string representation of this enum.
|
static List<String> |
toValue(List<OrderApplicationContextLandingPage> toConvert)
Convert list of OrderApplicationContextLandingPage values to list of string values.
|
String |
value()
Returns the string value associated with the enum member.
|
static OrderApplicationContextLandingPage |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OrderApplicationContextLandingPage[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OrderApplicationContextLandingPage LOGIN
public static final OrderApplicationContextLandingPage BILLING
public static final OrderApplicationContextLandingPage NO_PREFERENCE
public static final OrderApplicationContextLandingPage _UNKNOWN
public static OrderApplicationContextLandingPage[] values()
for (OrderApplicationContextLandingPage c : OrderApplicationContextLandingPage.values()) System.out.println(c);
public static OrderApplicationContextLandingPage 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 static OrderApplicationContextLandingPage constructFromString(String toConvert) throws IOException
toConvert - String value to get enum member.IOException - when provided value is not mapped to any enum member.public static OrderApplicationContextLandingPage fromString(String toConvert)
toConvert - String value to get enum member.public String value()
public String toString()
toString in class Enum<OrderApplicationContextLandingPage>public static List<String> toValue(List<OrderApplicationContextLandingPage> toConvert)
toConvert - The list of OrderApplicationContextLandingPage values to convert.Copyright © 2025. All rights reserved.