public enum ExperienceStatus extends Enum<ExperienceStatus>
| Enum Constant and Description |
|---|
_UNKNOWN
Unknown values will be mapped by this enum member
|
APPROVED
Order is approved.
|
CANCELED
PayPal checkout is canceled (by closing the checkout window or clicking cancel) before the order approval.
|
IN_PROGRESS
PayPal checkout initiated.
|
NOT_STARTED
PayPal checkout process has not yet begun.
|
| Modifier and Type | Method and Description |
|---|---|
static ExperienceStatus |
constructFromString(String toConvert)
Returns the enum member associated with the given string value.
|
static ExperienceStatus |
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<ExperienceStatus> toConvert)
Convert list of ExperienceStatus values to list of string values.
|
String |
value()
Returns the string value associated with the enum member.
|
static ExperienceStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExperienceStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExperienceStatus NOT_STARTED
public static final ExperienceStatus IN_PROGRESS
public static final ExperienceStatus CANCELED
public static final ExperienceStatus APPROVED
public static final ExperienceStatus _UNKNOWN
public static ExperienceStatus[] values()
for (ExperienceStatus c : ExperienceStatus.values()) System.out.println(c);
public static ExperienceStatus 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 ExperienceStatus 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 ExperienceStatus fromString(String toConvert)
toConvert - String value to get enum member.public String value()
public String toString()
toString in class Enum<ExperienceStatus>public static List<String> toValue(List<ExperienceStatus> toConvert)
toConvert - The list of ExperienceStatus values to convert.Copyright © 2026. All rights reserved.