Package io.sendon.payment.response
Enum GetPaymentHistories.ProofDocumentType
- java.lang.Object
-
- java.lang.Enum<GetPaymentHistories.ProofDocumentType>
-
- io.sendon.payment.response.GetPaymentHistories.ProofDocumentType
-
- All Implemented Interfaces:
Serializable,Comparable<GetPaymentHistories.ProofDocumentType>
- Enclosing class:
- GetPaymentHistories
public static enum GetPaymentHistories.ProofDocumentType extends Enum<GetPaymentHistories.ProofDocumentType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CASH_RECEIPTNONETAX_INVOICE
-
Field Summary
Fields Modifier and Type Field Description StringproofDocumentType
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static GetPaymentHistories.ProofDocumentTypevalueOf(String name)Returns the enum constant of this type with the specified name.static GetPaymentHistories.ProofDocumentType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CASH_RECEIPT
public static final GetPaymentHistories.ProofDocumentType CASH_RECEIPT
-
TAX_INVOICE
public static final GetPaymentHistories.ProofDocumentType TAX_INVOICE
-
NONE
public static final GetPaymentHistories.ProofDocumentType NONE
-
-
Field Detail
-
proofDocumentType
public final String proofDocumentType
-
-
Method Detail
-
values
public static GetPaymentHistories.ProofDocumentType[] 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 (GetPaymentHistories.ProofDocumentType c : GetPaymentHistories.ProofDocumentType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static GetPaymentHistories.ProofDocumentType valueOf(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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-