public enum DatamatrixMirror extends java.lang.Enum<DatamatrixMirror>
DatamatrixMirror is an enumeration defining the decoding mode for regular/mirror Data Matrix barcodes.
This enumeration specifies the allowed options.
The type is one of:
| REGULAR ONLY | Only regular Data Matrix is allowed. |
| MIRROR ONLY | Only mirrored Data Matrix is allowed. |
| BOTH | Both regular and mirrored Data Matrix are allowed. |
| Enum Constant and Description |
|---|
BOTH
Regular and Mirror
|
MIRROR_ONLY
Mirror decoding mode
|
REGULAR_ONLY
Regular decoding mode
|
| Modifier and Type | Method and Description |
|---|---|
static DatamatrixMirror |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DatamatrixMirror[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DatamatrixMirror REGULAR_ONLY
public static final DatamatrixMirror MIRROR_ONLY
public static final DatamatrixMirror BOTH
public static DatamatrixMirror[] values()
for (DatamatrixMirror c : DatamatrixMirror.values()) System.out.println(c);
public static DatamatrixMirror 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