public enum DisputeResolution extends Enum<DisputeResolution>
| Enum Constant and Description |
|---|
BUYER_WON |
MERCHANT_WON |
NO_FAULT |
| Modifier and Type | Method and Description |
|---|---|
String |
getDisputeResolution() |
static DisputeResolution |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DisputeResolution[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DisputeResolution BUYER_WON
public static final DisputeResolution MERCHANT_WON
public static final DisputeResolution NO_FAULT
public static DisputeResolution[] values()
for (DisputeResolution c : DisputeResolution.values()) System.out.println(c);
public static DisputeResolution 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 String getDisputeResolution()
Copyright © 2025. All rights reserved.