public enum Isbt128Mode extends java.lang.Enum<Isbt128Mode>
Isbt128Mode is an enumeration defining the decoding mode for ISBT 128 barcodes.
This enumeration specifies the allowed options.
The type is one of:
| SINGLE ONLY | Only single ISBT 128 barcode is decoded. |
| CONCATENATED ONLY | Only concatenated ISBT 128 barcode is decoded. |
| BOTH | Both single and concatenated ISBT 128 barcode are allowed. |
| Enum Constant and Description |
|---|
BOTH
Single and Concatenated ISBT 128 allowed
|
CONCATENATED_ONLY
Concatenated ISBT 128 barcodes allowed
|
SINGLE_ONLY
Single ISBT 128 barcode allowed
|
| Modifier and Type | Method and Description |
|---|---|
static Isbt128Mode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Isbt128Mode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Isbt128Mode SINGLE_ONLY
public static final Isbt128Mode CONCATENATED_ONLY
public static final Isbt128Mode BOTH
public static Isbt128Mode[] values()
for (Isbt128Mode c : Isbt128Mode.values()) System.out.println(c);
public static Isbt128Mode 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