Enum Constant and Description |
---|
Inverse
the decoder decodes inverse QR bar codes only.
|
InverseAutodetect
the decoder decodes both regular and inverse QR bar codes.
|
Regular
the decoder decodes regular QR bar codes only.
|
Modifier and Type | Method and Description |
---|---|
int |
getCode() |
java.lang.String |
toString() |
static QRInverse |
valueOf(int code) |
static QRInverse |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static QRInverse[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final QRInverse Regular
public static final QRInverse Inverse
public static final QRInverse InverseAutodetect
public static QRInverse[] values()
for (QRInverse c : QRInverse.values()) System.out.println(c);
public static QRInverse 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 java.lang.String toString()
public static QRInverse valueOf(int code)