public enum QrBillStandardVersion extends java.lang.Enum<QrBillStandardVersion>
SwissQR bill standard version
Enum Constant and Description |
---|
V2_0
Version 2.0
|
Modifier and Type | Method and Description |
---|---|
int |
getValue() |
static QrBillStandardVersion |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static QrBillStandardVersion[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final QrBillStandardVersion V2_0
Version 2.0
public static QrBillStandardVersion[] values()
for (QrBillStandardVersion c : QrBillStandardVersion.values()) System.out.println(c);
public static QrBillStandardVersion 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 nullpublic int getValue()