public enum DocumentQualifierEnumeration extends Enum<DocumentQualifierEnumeration>
Java class for DocumentQualifierEnumeration.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="DocumentQualifierEnumeration">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="SaleReceipt"/>
<enumeration value="CashierReceipt"/>
<enumeration value="CustomerReceipt"/>
<enumeration value="Document"/>
<enumeration value="Voucher"/>
<enumeration value="Journal"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
CASHIER_RECEIPT
Where the Sale system print the Cashier copy of the Payment receipt when requested by the POI Terminal.
|
CUSTOMER_RECEIPT
Where you print the Customer Payment receipt that could be located on the Sale Terminal or in some cases a restricted Customer Sale ticket on the POI Terminal.
|
DOCUMENT
When the POI System wants to print specific document (check, dynamic currency conversion ...).
|
JOURNAL
When the POI or the Sale System wants to store a message on the journal printer or electronic journal of the Sale Terminal (it is sometimes a Sale
|
SALE_RECEIPT
Where the POI system print the Sale receipt when requested by the Sale Terminal.
|
VOUCHER
Coupons, voucher or special ticket generated by the POI or the Sale System and to be printed.
|
| Modifier and Type | Method and Description |
|---|---|
static DocumentQualifierEnumeration |
fromValue(String v) |
String |
value() |
static DocumentQualifierEnumeration |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DocumentQualifierEnumeration[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DocumentQualifierEnumeration SALE_RECEIPT
public static final DocumentQualifierEnumeration CASHIER_RECEIPT
public static final DocumentQualifierEnumeration CUSTOMER_RECEIPT
public static final DocumentQualifierEnumeration DOCUMENT
public static final DocumentQualifierEnumeration VOUCHER
public static final DocumentQualifierEnumeration JOURNAL
public static DocumentQualifierEnumeration[] values()
for (DocumentQualifierEnumeration c : DocumentQualifierEnumeration.values()) System.out.println(c);
public static DocumentQualifierEnumeration valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String value()
public static DocumentQualifierEnumeration fromValue(String v)
Copyright © 2018. All rights reserved.