public enum ApplicationContextUserAction extends Enum<ApplicationContextUserAction>
| Enum Constant and Description |
|---|
_UNKNOWN
Unknown values will be mapped by this enum member
|
CONTINUE
After you redirect the customer to the PayPal subscription consent page, a Continue button appears.
|
SUBSCRIBE_NOW
After you redirect the customer to the PayPal subscription consent page, a Subscribe Now button appears.
|
| Modifier and Type | Method and Description |
|---|---|
static ApplicationContextUserAction |
constructFromString(String toConvert)
Returns the enum member associated with the given string value.
|
static ApplicationContextUserAction |
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<ApplicationContextUserAction> toConvert)
Convert list of ApplicationContextUserAction values to list of string values.
|
String |
value()
Returns the string value associated with the enum member.
|
static ApplicationContextUserAction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ApplicationContextUserAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ApplicationContextUserAction CONTINUE
public static final ApplicationContextUserAction SUBSCRIBE_NOW
public static final ApplicationContextUserAction _UNKNOWN
public static ApplicationContextUserAction[] values()
for (ApplicationContextUserAction c : ApplicationContextUserAction.values()) System.out.println(c);
public static ApplicationContextUserAction 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 ApplicationContextUserAction 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 ApplicationContextUserAction fromString(String toConvert)
toConvert - String value to get enum member.public String value()
public String toString()
toString in class Enum<ApplicationContextUserAction>public static List<String> toValue(List<ApplicationContextUserAction> toConvert)
toConvert - The list of ApplicationContextUserAction values to convert.Copyright © 2026. All rights reserved.