Class ClassInfo
- java.lang.Object
-
- com.microblink.entities.recognizers.blinkid.generic.classinfo.ClassInfo
-
public final class ClassInfo extends java.lang.Object
Contains document class information.
-
-
Constructor Summary
Constructors Constructor Description ClassInfo(long nativeContext, java.lang.Object keep)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Country
getCountry()
The document country.java.lang.String
getCountryName()
The name of the country that issued the scanned document.java.lang.String
getIsoAlpha2CountryCode()
The 2 letter ISO code of the country that issued the scanned document.java.lang.String
getIsoAlpha3CountryCode()
The 3 letter ISO code of the country that issued the scanned document.java.lang.String
getIsoNumericCountryCode()
The ISO numeric code of the country that issued the scanned document.Region
getRegion()
The document region.Type
getType()
The type of the scanned document.boolean
isEmpty()
Flag which indicates whether this class info is empty or not.
-
-
-
Method Detail
-
getCountry
@NonNull public Country getCountry()
The document country.
-
getRegion
@NonNull public Region getRegion()
The document region.
-
getType
@NonNull public Type getType()
The type of the scanned document.
-
getCountryName
@NonNull public java.lang.String getCountryName()
The name of the country that issued the scanned document.
-
getIsoNumericCountryCode
@NonNull public java.lang.String getIsoNumericCountryCode()
The ISO numeric code of the country that issued the scanned document.
-
getIsoAlpha2CountryCode
@NonNull public java.lang.String getIsoAlpha2CountryCode()
The 2 letter ISO code of the country that issued the scanned document.
-
getIsoAlpha3CountryCode
@NonNull public java.lang.String getIsoAlpha3CountryCode()
The 3 letter ISO code of the country that issued the scanned document.
-
isEmpty
public boolean isEmpty()
Flag which indicates whether this class info is empty or not.
-
-