Package com.checkout.disputes
Enum DisputeRelevantEvidence
- java.lang.Object
-
- java.lang.Enum<DisputeRelevantEvidence>
-
- com.checkout.disputes.DisputeRelevantEvidence
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<DisputeRelevantEvidence>
public enum DisputeRelevantEvidence extends java.lang.Enum<DisputeRelevantEvidence>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static DisputeRelevantEvidencevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static DisputeRelevantEvidence[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PROOF_OF_DELIVERY_OR_SERVICE
@SerializedName("proof_of_delivery_or_service") public static final DisputeRelevantEvidence PROOF_OF_DELIVERY_OR_SERVICE
-
INVOICE_OR_RECEIPT
@SerializedName("invoice_or_receipt") public static final DisputeRelevantEvidence INVOICE_OR_RECEIPT
-
INVOICE_SHOWING_DISTINCT_TRANSACTIONS
@SerializedName("invoice_showing_distinct_transactions") public static final DisputeRelevantEvidence INVOICE_SHOWING_DISTINCT_TRANSACTIONS
-
CUSTOMER_COMMUNICATION
@SerializedName("customer_communication") public static final DisputeRelevantEvidence CUSTOMER_COMMUNICATION
-
REFUND_OR_CANCELLATION_POLICY
@SerializedName("refund_or_cancellation_policy") public static final DisputeRelevantEvidence REFUND_OR_CANCELLATION_POLICY
-
RECURRING_TRANSACTION_AGREEMENT
@SerializedName("recurring_transaction_agreement") public static final DisputeRelevantEvidence RECURRING_TRANSACTION_AGREEMENT
-
ADDITIONAL_EVIDENCE
@SerializedName("additional_evidence") public static final DisputeRelevantEvidence ADDITIONAL_EVIDENCE
-
ARBITRATION_NO_REVIEW
@SerializedName("arbitration_no_review") public static final DisputeRelevantEvidence ARBITRATION_NO_REVIEW
-
ARBITRATION_REVIEW_REQUIRED
@SerializedName("arbitration_review_required") public static final DisputeRelevantEvidence ARBITRATION_REVIEW_REQUIRED
-
-
Method Detail
-
values
public static DisputeRelevantEvidence[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (DisputeRelevantEvidence c : DisputeRelevantEvidence.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DisputeRelevantEvidence valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-