public enum SendCodeID extends java.lang.Enum<SendCodeID>
SendCodeID is an enumeration defining the type of
identifier to be transmitted with the scanned data.
The type is one of:
| DATALOGIC_IDENTIFIER_BEFORE_LABEL | ID + " " + data |
| AIM_IDENTIFIER_BEFORE_LABEL | ] + ID + modifier + data |
| USERDEFINED_IDENTIFIER_BEFORE_LABEL | ID + data |
| DATALOGIC_IDENTIFIER_AFTER_LABEL | data + " " + ID |
| USERDEFINED_IDENTIFIER_AFTER_LABEL | data + ID |
| NONE | No identifier to be transmitted |
| Enum Constant and Description |
|---|
AIM_IDENTIFIER_BEFORE_LABEL
Transmit the AIM symbology identifier before the barcode data
|
DATALOGIC_IDENTIFIER_AFTER_LABEL
Transmit Datalogic legacy label identifier after the barcode data
|
DATALOGIC_IDENTIFIER_BEFORE_LABEL
Transmit Datalogic legacy label identifier before the barcode data
|
NONE
No identifier is transmitted with the decoded label
|
USERDEFINED_IDENTIFIER_AFTER_LABEL
Transmit a user identifier label after the barcode data
|
USERDEFINED_IDENTIFIER_BEFORE_LABEL
Transmit a user identifier label before the barcode data
|
| Modifier and Type | Method and Description |
|---|---|
static SendCodeID |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SendCodeID[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SendCodeID NONE
public static final SendCodeID DATALOGIC_IDENTIFIER_BEFORE_LABEL
public static final SendCodeID AIM_IDENTIFIER_BEFORE_LABEL
public static final SendCodeID USERDEFINED_IDENTIFIER_BEFORE_LABEL
public static final SendCodeID DATALOGIC_IDENTIFIER_AFTER_LABEL
public static final SendCodeID USERDEFINED_IDENTIFIER_AFTER_LABEL
public static SendCodeID[] values()
for (SendCodeID c : SendCodeID.values()) System.out.println(c);
public static SendCodeID 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