public static enum Dispute.Kind extends Enum<Dispute.Kind>
| Enum Constant and Description |
|---|
CHARGEBACK |
PRE_ARBITRATION |
RETRIEVAL |
UNRECOGNIZED |
| Modifier and Type | Method and Description |
|---|---|
static Dispute.Kind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Dispute.Kind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Dispute.Kind CHARGEBACK
public static final Dispute.Kind PRE_ARBITRATION
public static final Dispute.Kind RETRIEVAL
public static final Dispute.Kind UNRECOGNIZED
public static Dispute.Kind[] values()
for (Dispute.Kind c : Dispute.Kind.values()) System.out.println(c);
public static Dispute.Kind 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 nullCopyright © 2013–2018. All rights reserved.