public enum DisputeStatus extends Enum<DisputeStatus>
| Modifier and Type | Class and Description |
|---|---|
static class |
DisputeStatus.Adapter |
| Enum Constant and Description |
|---|
CLOSED |
LOST |
OPEN |
OTHER |
PENDING |
WON |
| Modifier and Type | Method and Description |
|---|---|
static DisputeStatus |
fromValue(String value) |
String |
getValue() |
String |
toString() |
static DisputeStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DisputeStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DisputeStatus OPEN
public static final DisputeStatus WON
public static final DisputeStatus LOST
public static final DisputeStatus CLOSED
public static final DisputeStatus OTHER
public static final DisputeStatus PENDING
public static DisputeStatus[] values()
for (DisputeStatus c : DisputeStatus.values()) System.out.println(c);
public static DisputeStatus 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 getValue()
public String toString()
toString in class Enum<DisputeStatus>public static DisputeStatus fromValue(String value)
Copyright © 2024. All rights reserved.