java.lang.Object |
↳ |
java.lang.Enum<E extends java.lang.Enum<E>> |
|
↳ |
com.datalogic.decode.configuration.DatamatrixOpMode |
Class Overview
DatamatrixOpMode
is an enumeration defining the allowed operating mode for datamatrix barcodes.
The operating mode can provide an improvement of decoding performance, but the decoding robustness
can decrease with the performance improvement. Therefore FAST and VERY FAST mode should be set only
in case of barcode printed with good quality. ROBUST and VERY ROBUST are suggested for DPM applications.
The type is one of:
VERY FAST |
Best performance with lowest robustness. |
FAST |
Good performance. |
ROBUST |
Lower performance with good robustness. |
VERY ROBUST |
Worst performance with highest robustness. |
Summary
Enum Values |
DatamatrixOpMode |
FAST |
Fast decoding with good quality. |
DatamatrixOpMode |
ROBUST |
Robust decoding. |
DatamatrixOpMode |
VERY_FAST |
Very fast decoding with very good quality. |
DatamatrixOpMode |
VERY_ROBUST |
Very robust decoding with low performance. |
[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
Fast decoding with good quality.
Very fast decoding with very good quality.
Very robust decoding with low performance.
Public Methods