public enum SellerProtectionStatus extends Enum<SellerProtectionStatus>
| Enum Constant and Description |
|---|
_UNKNOWN
Unknown values will be mapped by this enum member
|
ELIGIBLE
Your PayPal balance remains intact if the customer claims that they did not receive an item or the account holder claims that they did not authorize the payment.
|
NOT_ELIGIBLE
This transaction is not eligible for seller protection.
|
PARTIALLY_ELIGIBLE
Your PayPal balance remains intact if the customer claims that they did not receive an item.
|
| Modifier and Type | Method and Description |
|---|---|
static SellerProtectionStatus |
constructFromString(String toConvert)
Returns the enum member associated with the given string value.
|
static SellerProtectionStatus |
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<SellerProtectionStatus> toConvert)
Convert list of SellerProtectionStatus values to list of string values.
|
String |
value()
Returns the string value associated with the enum member.
|
static SellerProtectionStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SellerProtectionStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SellerProtectionStatus ELIGIBLE
public static final SellerProtectionStatus PARTIALLY_ELIGIBLE
public static final SellerProtectionStatus NOT_ELIGIBLE
public static final SellerProtectionStatus _UNKNOWN
public static SellerProtectionStatus[] values()
for (SellerProtectionStatus c : SellerProtectionStatus.values()) System.out.println(c);
public static SellerProtectionStatus 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 SellerProtectionStatus 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 SellerProtectionStatus fromString(String toConvert)
toConvert - String value to get enum member.public String value()
public String toString()
toString in class Enum<SellerProtectionStatus>public static List<String> toValue(List<SellerProtectionStatus> toConvert)
toConvert - The list of SellerProtectionStatus values to convert.Copyright © 2025. All rights reserved.