public enum SlipParagraphType extends java.lang.Enum<SlipParagraphType>
"абзацев"
на чековой ленте.Enum Constant and Description |
---|
BARCODE
Сообщение абзаца будет распечатано как ШК (Штрих-код) в кодировке Code39.
|
IMAGE
Сообщение абзаца является картинкой.
|
QR
Абзац следует распечатать как QR код.
|
TEXT
Сообщение абзаца будет распечатано как текст
|
Modifier and Type | Method and Description |
---|---|
static SlipParagraphType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SlipParagraphType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SlipParagraphType TEXT
public static final SlipParagraphType BARCODE
public static final SlipParagraphType QR
public static final SlipParagraphType IMAGE
SlipParagraph
необходимо заполнить поле SlipParagraph.image
.public static SlipParagraphType[] values()
for (SlipParagraphType c : SlipParagraphType.values()) System.out.println(c);
public static SlipParagraphType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null