public enum OutputFormatType extends Enum<OutputFormatType>
Java class for OutputFormatType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="OutputFormatType">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="MessageRef"/>
<enumeration value="Text"/>
<enumeration value="XHTML"/>
<enumeration value="BarCode"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
BAR_CODE
Barcode type to print The output is then a OutputBarCode data structure.
|
MESSAGE_REF
Predefined messageType (of any format) on the POI or the Sale.
|
TEXT
Text messageType including control characters prefixed by an escape character.
|
XHTML
DisplayOutput uses the eXtensible HyperText Markup Language.
|
| Modifier and Type | Method and Description |
|---|---|
static OutputFormatType |
fromValue(String v)
From value output format type.
|
String |
value()
Value string.
|
static OutputFormatType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OutputFormatType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OutputFormatType MESSAGE_REF
public static final OutputFormatType TEXT
public static final OutputFormatType XHTML
public static final OutputFormatType BAR_CODE
public static OutputFormatType[] values()
for (OutputFormatType c : OutputFormatType.values()) System.out.println(c);
public static OutputFormatType 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 OutputFormatType fromValue(String v)
v - the vCopyright © 2022. All rights reserved.