Class BarcodeElements
- java.lang.Object
-
- com.microblink.entities.recognizers.blinkid.idbarcode.BarcodeElements
-
public final class BarcodeElements extends java.lang.Object
Contains barcode elements scanned from the document.
-
-
Constructor Summary
Constructors Constructor Description BarcodeElements(long nativeContext, java.lang.Object keep)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getValue(BarcodeElementKey key)
Returns value for the givenBarcodeElementKey
, or empty string if it does not exist.boolean
isEmpty()
Flag which indicates whether this barcode elements container is empty or not.
-
-
-
Method Detail
-
isEmpty
public boolean isEmpty()
Flag which indicates whether this barcode elements container is empty or not.
-
getValue
@NonNull public java.lang.String getValue(BarcodeElementKey key)
Returns value for the givenBarcodeElementKey
, or empty string if it does not exist.- Parameters:
key
- barcode filed key.- Returns:
- value for the given
BarcodeElementKey
, or empty string if it does not exist
-
-