Package com.mindee.product.barcodereader
Class BarcodeReaderV1Document
- java.lang.Object
-
- com.mindee.parsing.common.Prediction
-
- com.mindee.product.barcodereader.BarcodeReaderV1Document
-
public class BarcodeReaderV1Document extends Prediction
Barcode Reader API version 1.0 document data.
-
-
Field Summary
Fields Modifier and Type Field Description protected List<StringField>
codes1D
List of decoded 1D barcodes.protected List<StringField>
codes2D
List of decoded 2D barcodes.
-
Constructor Summary
Constructors Constructor Description BarcodeReaderV1Document()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected boolean
canEqual(Object other)
boolean
equals(Object o)
List<StringField>
getCodes1D()
List of decoded 1D barcodes.List<StringField>
getCodes2D()
List of decoded 2D barcodes.int
hashCode()
boolean
isEmpty()
Returnstrue
if there are no predictions values.String
toString()
-
-
-
Field Detail
-
codes1D
protected List<StringField> codes1D
List of decoded 1D barcodes.
-
codes2D
protected List<StringField> codes2D
List of decoded 2D barcodes.
-
-
Method Detail
-
isEmpty
public boolean isEmpty()
Description copied from class:Prediction
Returnstrue
if there are no predictions values. Accessing prediction values when this istrue
may result in aNullPointerException
- Specified by:
isEmpty
in classPrediction
-
getCodes1D
public List<StringField> getCodes1D()
List of decoded 1D barcodes.
-
getCodes2D
public List<StringField> getCodes2D()
List of decoded 2D barcodes.
-
canEqual
protected boolean canEqual(Object other)
-
-