public static enum QRBill.BillFormat extends java.lang.Enum<QRBill.BillFormat>
| Enum Constant and Description |
|---|
A4_PORTRAIT_SHEET
A4 sheet in portrait orientation.
|
A5_LANDSCAPE_SHEET
A5 sheet in landscape orientation.
|
A6_LANDSCAPE_SHEET
A6 sheet in landscape orientation.
|
QR_CODE_ONLY
QR code only (46 by 46 mm).
|
| Modifier and Type | Method and Description |
|---|---|
static QRBill.BillFormat |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static QRBill.BillFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final QRBill.BillFormat A4_PORTRAIT_SHEET
public static final QRBill.BillFormat A5_LANDSCAPE_SHEET
public static final QRBill.BillFormat A6_LANDSCAPE_SHEET
public static final QRBill.BillFormat QR_CODE_ONLY
public static QRBill.BillFormat[] values()
for (QRBill.BillFormat c : QRBill.BillFormat.values()) System.out.println(c);
public static QRBill.BillFormat 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