com.tecit.jni.barcode
Class DrawMode

java.lang.Object
  extended by com.tecit.jni.barcode.DrawMode

public class DrawMode
extends java.lang.Object

The class DrawMode serves as container for the draw method enumerations.


Field Summary
static int Advanced
          Advanced draw mode -- a little slower but accurate, compatible with most printer drivers
static int Compatible
          Compatible draw mode -- fast but inaccurate, compatible with nearly all printer drivers
static int Default
          Default draw mode
static int Dual
          Dual draw mode -- a mixture between Compatible and Dual.
 
Constructor Summary
DrawMode()
           
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

Default

public static final int Default
Default draw mode

See Also:
Constant Field Values

Compatible

public static final int Compatible
Compatible draw mode -- fast but inaccurate, compatible with nearly all printer drivers

See Also:
Constant Field Values

Advanced

public static final int Advanced
Advanced draw mode -- a little slower but accurate, compatible with most printer drivers

See Also:
Constant Field Values

Dual

public static final int Dual
Dual draw mode -- a mixture between Compatible and Dual. Can be used if printer driver has problems with the other modes

See Also:
Constant Field Values
Constructor Detail

DrawMode

public DrawMode()