|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectcom.sap.ip.me.api.pios.symbology.Symbology
com.sap.ip.me.api.pios.symbology.Symbology2D
com.sap.ip.me.api.pios.symbology.PDF417
Represents the PDF417 Symbology.
PDF-417 (Portable Data Format) is a two-dimensional, multi-row symbology designed to be scanned by laser scanners and linear CCD scanners.
The following options can be set for this symbology:
...
PDF417 pdf417 = new PDF417(PDF417.SECURITY_LEVEL_AUTOMATIC);
...
Field Summary | |
static long |
SECURITY_LEVEL_1
Constant to indicate a security level of 1 option. |
static long |
SECURITY_LEVEL_2
Constant to indicate a security level of 2 option. |
static long |
SECURITY_LEVEL_3
Constant to indicate a security level of 3 option. |
static long |
SECURITY_LEVEL_4
Constant to indicate a security level of 4 option. |
static long |
SECURITY_LEVEL_5
Constant to indicate a security level of 5 option. |
static long |
SECURITY_LEVEL_6
Constant to indicate a security level of 6 option. |
static long |
SECURITY_LEVEL_7
Constant to indicate a security level of 7 option. |
static long |
SECURITY_LEVEL_8
Constant to indicate a security level of 8 option. |
static long |
SECURITY_LEVEL_AUTOMATIC
Constant to indicate security level selected automatically option. |
static long |
TRUNCATE
Constant to indicate truncate option. |
Fields inherited from class com.sap.ip.me.api.pios.symbology.Symbology |
options |
Constructor Summary | |
PDF417()
Constructs a new PDF417 object. |
|
PDF417(long options)
Constructs a new PDF417 object with the symbology options provided. |
Method Summary | |
int |
getColums()
Returns the number of columns to encode. |
java.lang.String |
getName()
Returns the symbology name. |
int |
getRows()
Returns the number of rows to encode. |
int |
getType()
Returns the symbology type. |
void |
setColumns(int columns)
Sets the number of columns to encode. |
void |
setOptions(long options)
Sets the configured options for the symbology. |
void |
setRows(int rows)
Sets the number of rows to encode. |
Methods inherited from class com.sap.ip.me.api.pios.symbology.Symbology |
getOptions, validateOptions |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
public static final long SECURITY_LEVEL_1
public static final long SECURITY_LEVEL_2
public static final long SECURITY_LEVEL_3
public static final long SECURITY_LEVEL_4
public static final long SECURITY_LEVEL_5
public static final long SECURITY_LEVEL_6
public static final long SECURITY_LEVEL_7
public static final long SECURITY_LEVEL_8
public static final long SECURITY_LEVEL_AUTOMATIC
public static final long TRUNCATE
Constructor Detail |
public PDF417()
public PDF417(long options) throws InvalidSymbologyException
The options value is either one of the option constants defined by this class,
or must be built by bitwise OR'ing together (that is, using
the long
"|" operator) two or more of those option constants.
options
- the symbology options mask
InvalidSymbologyException
- thrown if the received options are invalid for this symbologyMethod Detail |
public java.lang.String getName()
getName
in class Symbology
public int getType()
getType
in class Symbology
SymbologyType
public void setOptions(long options) throws InvalidSymbologyException
setOptions
in class Symbology
options
- the symbology options mask
InvalidSymbologyException
- thrown if the received options are invalid for this symbologypublic void setColumns(int columns)
columns
- The number of columns to encode.public int getColums()
public void setRows(int rows)
rows
- The number of rows to encode.public int getRows()
|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |