Package io.anyline.plugin.result
Class Barcode
-
- All Implemented Interfaces:
public class Barcode
Describes barcode information
-
-
Constructor Summary
Constructors Constructor Description Barcode()
-
Method Summary
Modifier and Type Method Description String
getValue()
The value of the barcode (Required) void
setValue(String value)
The value of the barcode (Required) String
getFormat()
The barcode format (Required) void
setFormat(String format)
The barcode format (Required) List<Integer>
getCoordinates()
Corner points of a polygon surrounding the discovered barcode, starting from the bottom-left coordinate going counter-clockwise. void
setCoordinates(List<Integer> coordinates)
Corner points of a polygon surrounding the discovered barcode, starting from the bottom-left coordinate going counter-clockwise. String
getBase64value()
Contains the base64-encoded value void
setBase64value(String base64value)
Contains the base64-encoded value Aamva
getAamva()
Holds all encoded barcode information according to the AAMVA standard void
setAamva(Aamva aamva)
Holds all encoded barcode information according to the AAMVA standard String
toString()
int
hashCode()
boolean
equals(Object other)
-
-
Method Detail
-
getCoordinates
List<Integer> getCoordinates()
Corner points of a polygon surrounding the discovered barcode, starting from the bottom-left coordinate going counter-clockwise. The coordinates are in reference to the image of the plugin result.
-
setCoordinates
void setCoordinates(List<Integer> coordinates)
Corner points of a polygon surrounding the discovered barcode, starting from the bottom-left coordinate going counter-clockwise. The coordinates are in reference to the image of the plugin result.
-
getBase64value
String getBase64value()
Contains the base64-encoded value
-
setBase64value
void setBase64value(String base64value)
Contains the base64-encoded value
-
setAamva
void setAamva(Aamva aamva)
Holds all encoded barcode information according to the AAMVA standard
-
hashCode
int hashCode()
-
-
-
-