public enum DisputeType extends java.lang.Enum<DisputeType>
| Enum Constant and Description |
|---|
CONTESTABLE
CONTESTABLE dispute type.
|
NOT_CONTESTABLE
NOT_CONTESTABLE dispute type.
|
RETRIEVAL
RETRIEVAL dispute type.
|
| Modifier and Type | Method and Description |
|---|---|
static DisputeType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DisputeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DisputeType CONTESTABLE
public static final DisputeType NOT_CONTESTABLE
public static final DisputeType RETRIEVAL
public static DisputeType[] values()
for (DisputeType c : DisputeType.values()) System.out.println(c);
public static DisputeType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null