public enum DisputeDocumentType extends java.lang.Enum<DisputeDocumentType>
| Enum Constant and Description |
|---|
DELIVERY_PROOF
DELIVERY_PROOF dispute document type.
|
INVOICE
INVOICE dispute document type.
|
OTHER
OTHER dispute document type.
|
PRODUCT_REPLACEMENT_PROOF
PRODUCT_REPLACEMENT_PROOF dispute document type.
|
REFUND_PROOF
REFUND_PROOF dispute document type.
|
USER_ACCEPTANCE_PROOF
USER_ACCEPTANCE_PROOF dispute document type.
|
USER_CORRESPONDANCE
USER_CORRESPONDANCE dispute document type.
|
| Modifier and Type | Method and Description |
|---|---|
static DisputeDocumentType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DisputeDocumentType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DisputeDocumentType DELIVERY_PROOF
public static final DisputeDocumentType INVOICE
public static final DisputeDocumentType REFUND_PROOF
public static final DisputeDocumentType USER_CORRESPONDANCE
public static final DisputeDocumentType USER_ACCEPTANCE_PROOF
public static final DisputeDocumentType PRODUCT_REPLACEMENT_PROOF
public static final DisputeDocumentType OTHER
public static DisputeDocumentType[] values()
for (DisputeDocumentType c : DisputeDocumentType.values()) System.out.println(c);
public static DisputeDocumentType 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