Class Barcode

  • All Implemented Interfaces:

    
    public class Barcode
    
                        

    Describes barcode information

    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
    • Constructor Summary

      Constructors 
      Constructor Description
      Barcode()
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
    • 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)
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • Barcode

        Barcode()
    • Method Detail

      • setValue

         void setValue(String value)

        The value of the barcode (Required)

      • 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.

      • getAamva

         Aamva getAamva()

        Holds all encoded barcode information according to the AAMVA standard

      • setAamva

         void setAamva(Aamva aamva)

        Holds all encoded barcode information according to the AAMVA standard