public enum UpcEanCompositeMode extends java.lang.Enum<UpcEanCompositeMode>
UpcEanCompositeMode is an enumeration defining the type of transmission in use for GS1 Composite labels containing UPC/EAN barcodes.
UPC/EAN barcode is transmitted always as the first part of a GS1 Composite label. The UpcEanCompositeMode class discriminate the recognition of
linear UPC/EAN part in a GS1 Composite label.
The type is one of:
| AUTO | Transmit UPC/EAN labels and then Composite CC-A or Composite CC-B 2D component, if found |
| ALWAYS_LINKED | Transmit UPC/EAN labels only if close to Composite CC-A or Composite CC-B 2D components |
| NEVER_LINKED | Transmit only UPC/EAN labels independently from Composite CC-A or Composite CC-B 2D presence |
| Enum Constant and Description |
|---|
ALWAYS_LINKED
Force the only transmission of UPC/EAN labels associable with Composite 2D components.
|
AUTO
Auto recognize the presence of UPC/EAN labels and Composite 2D component.
|
NEVER_LINKED
Transmit the only UPC/EAN part of a GS1 Composite barcode, if found
|
| Modifier and Type | Method and Description |
|---|---|
static UpcEanCompositeMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static UpcEanCompositeMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UpcEanCompositeMode AUTO
public static final UpcEanCompositeMode ALWAYS_LINKED
public static final UpcEanCompositeMode NEVER_LINKED
public static UpcEanCompositeMode[] values()
for (UpcEanCompositeMode c : UpcEanCompositeMode.values()) System.out.println(c);
public static UpcEanCompositeMode 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