public enum DisputeCategory extends Enum<DisputeCategory>
| Enum Constant and Description |
|---|
_UNKNOWN
Unknown values will be mapped by this enum member
|
ITEM_NOT_RECEIVED
The payer paid for an item that they did not receive.
|
UNAUTHORIZED_TRANSACTION
The payer did not authorize the payment.
|
| Modifier and Type | Method and Description |
|---|---|
static DisputeCategory |
constructFromString(String toConvert)
Returns the enum member associated with the given string value.
|
static DisputeCategory |
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<DisputeCategory> toConvert)
Convert list of DisputeCategory values to list of string values.
|
String |
value()
Returns the string value associated with the enum member.
|
static DisputeCategory |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DisputeCategory[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DisputeCategory ITEM_NOT_RECEIVED
public static final DisputeCategory UNAUTHORIZED_TRANSACTION
public static final DisputeCategory _UNKNOWN
public static DisputeCategory[] values()
for (DisputeCategory c : DisputeCategory.values()) System.out.println(c);
public static DisputeCategory 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 DisputeCategory 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 DisputeCategory fromString(String toConvert)
toConvert - String value to get enum member.public String value()
public String toString()
toString in class Enum<DisputeCategory>public static List<String> toValue(List<DisputeCategory> toConvert)
toConvert - The list of DisputeCategory values to convert.Copyright © 2025. All rights reserved.