Class LicensePlateScannerResult
-
- All Implemented Interfaces:
-
android.os.Parcelable
public final class LicensePlateScannerResult implements Parcelable
Defines a result of the license plate scanning flow.
-
-
Field Summary
Fields Modifier and Type Field Description private final String
rawText
private final String
countryCode
private final String
licensePlate
private final Double
confidence
-
Constructor Summary
Constructors Constructor Description LicensePlateScannerResult(String rawText, String countryCode, String licensePlate, Double confidence)
-
Method Summary
Modifier and Type Method Description final String
getRawText()
The validated result of the scanning. final String
getCountryCode()
The validated result of the scanning. final String
getLicensePlate()
The validated result of the scanning. final Double
getConfidence()
The confidence of the recognized text. -
-
Method Detail
-
getRawText
final String getRawText()
The validated result of the scanning.
-
getCountryCode
final String getCountryCode()
The validated result of the scanning.
-
getLicensePlate
final String getLicensePlate()
The validated result of the scanning.
-
getConfidence
final Double getConfidence()
The confidence of the recognized text.
-
-
-
-