Package com.six.timapi.receipts
Enum CustomReceiptFormatter.Condition
- java.lang.Object
-
- java.lang.Enum<CustomReceiptFormatter.Condition>
-
- com.six.timapi.receipts.CustomReceiptFormatter.Condition
-
- All Implemented Interfaces:
Serializable,Comparable<CustomReceiptFormatter.Condition>
- Enclosing class:
- CustomReceiptFormatter
public static enum CustomReceiptFormatter.Condition extends Enum<CustomReceiptFormatter.Condition>
Conditions.
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CustomReceiptFormatter.ConditionvalueOf(String name)Returns the enum constant of this type with the specified name.static CustomReceiptFormatter.Condition[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final CustomReceiptFormatter.Condition NONE
-
ECR_INFO
public static final CustomReceiptFormatter.Condition ECR_INFO
-
EFT_INFO
public static final CustomReceiptFormatter.Condition EFT_INFO
-
ECR_INFO_WITH_TRANS_SEQ
public static final CustomReceiptFormatter.Condition ECR_INFO_WITH_TRANS_SEQ
-
SIGNATURE
public static final CustomReceiptFormatter.Condition SIGNATURE
-
HAS_VALUES
public static final CustomReceiptFormatter.Condition HAS_VALUES
-
HAS_VALUES_NO_INVALID_FIELD
public static final CustomReceiptFormatter.Condition HAS_VALUES_NO_INVALID_FIELD
-
INSTALLMENT
public static final CustomReceiptFormatter.Condition INSTALLMENT
-
DCC
public static final CustomReceiptFormatter.Condition DCC
-
HEADER
public static final CustomReceiptFormatter.Condition HEADER
-
FOOTER
public static final CustomReceiptFormatter.Condition FOOTER
-
IS_REVERSAL
public static final CustomReceiptFormatter.Condition IS_REVERSAL
-
HAS_ALL_VALUES
public static final CustomReceiptFormatter.Condition HAS_ALL_VALUES
-
PARTIAL_APPROVAL
public static final CustomReceiptFormatter.Condition PARTIAL_APPROVAL
-
NO_PARTIAL_APPROVAL
public static final CustomReceiptFormatter.Condition NO_PARTIAL_APPROVAL
-
HAS_ADDITIONAL_AMOUNTS
public static final CustomReceiptFormatter.Condition HAS_ADDITIONAL_AMOUNTS
-
SIGNATURE_MERCHANT
public static final CustomReceiptFormatter.Condition SIGNATURE_MERCHANT
-
RESERVATION_ADJUSTMENT
public static final CustomReceiptFormatter.Condition RESERVATION_ADJUSTMENT
-
NO_RESERVATION_ADJUSTMENT
public static final CustomReceiptFormatter.Condition NO_RESERVATION_ADJUSTMENT
-
TRX_OK_OR_VERIFIED_BY_DEVICE
public static final CustomReceiptFormatter.Condition TRX_OK_OR_VERIFIED_BY_DEVICE
-
NO_PARTIAL_APPROVAL_AND_NO_RESERVATION_ADJUSTMENT
public static final CustomReceiptFormatter.Condition NO_PARTIAL_APPROVAL_AND_NO_RESERVATION_ADJUSTMENT
-
FIELD_TRANSACTION_TYPE
public static final CustomReceiptFormatter.Condition FIELD_TRANSACTION_TYPE
-
NO_FIELD_TRANSACTION_TYPE
public static final CustomReceiptFormatter.Condition NO_FIELD_TRANSACTION_TYPE
-
NO_DCC_REGULATED
public static final CustomReceiptFormatter.Condition NO_DCC_REGULATED
-
TRX_OK
public static final CustomReceiptFormatter.Condition TRX_OK
-
VERIFIED_BY_DEVICE
public static final CustomReceiptFormatter.Condition VERIFIED_BY_DEVICE
-
NO_TENDER_NAME
public static final CustomReceiptFormatter.Condition NO_TENDER_NAME
-
CONTACTLESS
public static final CustomReceiptFormatter.Condition CONTACTLESS
-
EMV_DATA
public static final CustomReceiptFormatter.Condition EMV_DATA
-
EXP_DATE_NO_CARD_SEQ_NO
public static final CustomReceiptFormatter.Condition EXP_DATE_NO_CARD_SEQ_NO
-
CDGM
public static final CustomReceiptFormatter.Condition CDGM
-
ONLINE
public static final CustomReceiptFormatter.Condition ONLINE
-
FIELD_TRANSACTION_TYPE_AND_TENDER_NAME
public static final CustomReceiptFormatter.Condition FIELD_TRANSACTION_TYPE_AND_TENDER_NAME
-
FIELD_TRANSACTION_TYPE_AND_NO_TENDER_NAME
public static final CustomReceiptFormatter.Condition FIELD_TRANSACTION_TYPE_AND_NO_TENDER_NAME
-
NO_FIELD_TRANSACTION_TYPE_AND_TENDER_NAME
public static final CustomReceiptFormatter.Condition NO_FIELD_TRANSACTION_TYPE_AND_TENDER_NAME
-
NO_FIELD_TRANSACTION_TYPE_AND_NO_TENDER_NAME
public static final CustomReceiptFormatter.Condition NO_FIELD_TRANSACTION_TYPE_AND_NO_TENDER_NAME
-
BAL_EXP_DATE_OR_RES_EXP_DATE_OR_AVAILABLE
public static final CustomReceiptFormatter.Condition BAL_EXP_DATE_OR_RES_EXP_DATE_OR_AVAILABLE
-
OFFLINE
public static final CustomReceiptFormatter.Condition OFFLINE
-
ELV_LEGAL_TEXT
public static final CustomReceiptFormatter.Condition ELV_LEGAL_TEXT
-
-
Method Detail
-
values
public static CustomReceiptFormatter.Condition[] 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 (CustomReceiptFormatter.Condition c : CustomReceiptFormatter.Condition.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CustomReceiptFormatter.Condition 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
-
-