Package io.anyline.plugin.result
Class Barcode
-
- All Implemented Interfaces:
-
java.io.Serializable
public class Barcode implements Serializable
Describes barcode information
-
-
Constructor Summary
Constructors Constructor Description Barcode()
-
Method Summary
Modifier and Type Method Description StringgetValue()The value of the barcode (Required) voidsetValue(String value)The value of the barcode (Required) StringgetFormat()The barcode format (Required) voidsetFormat(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. voidsetCoordinates(List<Integer> coordinates)Corner points of a polygon surrounding the discovered barcode, starting from the bottom-left coordinate going counter-clockwise. StringgetBase64value()Contains the base64-encoded value voidsetBase64value(String base64value)Contains the base64-encoded value AamvagetAamva()Holds all encoded barcode information according to the AAMVA standard voidsetAamva(Aamva aamva)Holds all encoded barcode information according to the AAMVA standard StringtoString()inthashCode()booleanequals(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()
-
-
-
-