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>codes1DList of decoded 1D barcodes.protected List<StringField>codes2DList of decoded 2D barcodes.
-
Constructor Summary
Constructors Constructor Description BarcodeReaderV1Document()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected booleancanEqual(Object other)booleanequals(Object o)List<StringField>getCodes1D()List of decoded 1D barcodes.List<StringField>getCodes2D()List of decoded 2D barcodes.inthashCode()booleanisEmpty()Returnstrueif there are no predictions values.StringtoString()
-
-
-
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:PredictionReturnstrueif there are no predictions values. Accessing prediction values when this istruemay result in aNullPointerException- Specified by:
isEmptyin 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)
-
-