java.lang.Object |
↳ |
java.lang.Enum<E extends java.lang.Enum<E>> |
|
↳ |
com.datalogic.decode.configuration.LengthControlMode |
Class Overview
LengthControlMode
is an enumeration defining the operating length
control mode for each barcode family that has lengths. This enumeration specify how each L1 and L2 length values
should be applied to a label.
The type is one of:
NONE |
Turn off label length check. |
ONE_FIXED |
Only L1 value will be used, the only labels with a fixed L1 length will be considered valid. |
TWO_FIXED |
Both L1 and L2 will be used, only labels with a fixed L1 or L2 length will be considered valid. |
RANGE |
Both L1 and L2 will be used. The only labels with a length that is ranging from the minor length, between L1 and L2, to the major, again between L1 and L2,
will be considered valid. If L1 is less than L2, L1 will be considered as the minor length of the desired range; otherwise the opposite. |
Summary
Enum Values |
LengthControlMode |
NONE |
No control
|
LengthControlMode |
ONE_FIXED |
One single fixed length control
|
LengthControlMode |
RANGE |
Range length control
|
LengthControlMode |
TWO_FIXED |
Two fixed lengths control
|
[Expand]
Inherited Methods |
From class
java.lang.Enum
final
Object
|
clone()
|
final
int
|
compareTo(E arg0)
|
int
|
compareTo(Object arg0)
|
final
boolean
|
equals(Object arg0)
|
final
void
|
finalize()
|
final
Class<E>
|
getDeclaringClass()
|
final
int
|
hashCode()
|
final
String
|
name()
|
final
int
|
ordinal()
|
String
|
toString()
|
static
<T extends Enum<T>>
T
|
valueOf(Class<T> arg0, String arg1)
|
|
From class
java.lang.Object
Object
|
clone()
|
boolean
|
equals(Object arg0)
|
void
|
finalize()
|
final
Class<?>
|
getClass()
|
int
|
hashCode()
|
final
void
|
notify()
|
final
void
|
notifyAll()
|
String
|
toString()
|
final
void
|
wait(long arg0, int arg1)
|
final
void
|
wait(long arg0)
|
final
void
|
wait()
|
|
From interface
java.lang.Comparable
abstract
int
|
compareTo(T arg0)
|
|
Enum Values
One single fixed length control
Two fixed lengths control
Public Methods