public enum DocumentQualifierType extends Enum<DocumentQualifierType>
Java class for DocumentQualifierType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="DocumentQualifierType">
<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 messageType 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 DocumentQualifierType |
fromValue(String v)
From value document qualifier type.
|
String |
value()
Value string.
|
static DocumentQualifierType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DocumentQualifierType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DocumentQualifierType SALE_RECEIPT
public static final DocumentQualifierType CASHIER_RECEIPT
public static final DocumentQualifierType CUSTOMER_RECEIPT
public static final DocumentQualifierType DOCUMENT
public static final DocumentQualifierType VOUCHER
public static final DocumentQualifierType JOURNAL
public static DocumentQualifierType[] values()
for (DocumentQualifierType c : DocumentQualifierType.values()) System.out.println(c);
public static DocumentQualifierType 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 DocumentQualifierType fromValue(String v)
v - the vCopyright © 2022. All rights reserved.