Enum Type
- java.lang.Object
-
- java.lang.Enum<Type>
-
- com.microblink.entities.recognizers.blinkid.generic.classinfo.Type
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Type
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static Type[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final Type NONE
-
CONSULAR_ID
public static final Type CONSULAR_ID
-
DL
public static final Type DL
-
DL_PUBLIC_SERVICES_CARD
public static final Type DL_PUBLIC_SERVICES_CARD
-
EMPLOYMENT_PASS
public static final Type EMPLOYMENT_PASS
-
FIN_CARD
public static final Type FIN_CARD
-
ID
public static final Type ID
-
MULTIPURPOSE_ID
public static final Type MULTIPURPOSE_ID
-
MyKad
public static final Type MyKad
-
MyKid
public static final Type MyKid
-
MyPR
public static final Type MyPR
-
MyTentera
public static final Type MyTentera
-
PAN_CARD
public static final Type PAN_CARD
-
PROFESSIONAL_ID
public static final Type PROFESSIONAL_ID
-
PUBLIC_SERVICES_CARD
public static final Type PUBLIC_SERVICES_CARD
-
RESIDENCE_PERMIT
public static final Type RESIDENCE_PERMIT
-
RESIDENT_ID
public static final Type RESIDENT_ID
-
TEMPORARY_RESIDENCE_PERMIT
public static final Type TEMPORARY_RESIDENCE_PERMIT
-
VOTER_ID
public static final Type VOTER_ID
-
WORK_PERMIT
public static final Type WORK_PERMIT
-
iKAD
public static final Type iKAD
-
MILITARY_ID
public static final Type MILITARY_ID
-
MyKAS
public static final Type MyKAS
-
SOCIAL_SECURITY_CARD
public static final Type SOCIAL_SECURITY_CARD
-
HEALTH_INSURANCE_CARD
public static final Type HEALTH_INSURANCE_CARD
-
PASSPORT
public static final Type PASSPORT
-
S_PASS
public static final Type S_PASS
-
ADDRESS_CARD
public static final Type ADDRESS_CARD
-
ALIEN_ID
public static final Type ALIEN_ID
-
ALIEN_PASSPORT
public static final Type ALIEN_PASSPORT
-
GREEN_CARD
public static final Type GREEN_CARD
-
MINORS_ID
public static final Type MINORS_ID
-
POSTAL_ID
public static final Type POSTAL_ID
-
PROFESSIONAL_DL
public static final Type PROFESSIONAL_DL
-
TAX_ID
public static final Type TAX_ID
-
WEAPON_PERMIT
public static final Type WEAPON_PERMIT
-
VISA
public static final Type VISA
-
BORDER_CROSSING_CARD
public static final Type BORDER_CROSSING_CARD
-
DRIVER_CARD
public static final Type DRIVER_CARD
-
GLOBAL_ENTRY_CARD
public static final Type GLOBAL_ENTRY_CARD
-
MyPolis
public static final Type MyPolis
-
NEXUS_CARD
public static final Type NEXUS_CARD
-
PASSPORT_CARD
public static final Type PASSPORT_CARD
-
PROOF_OF_AGE_CARD
public static final Type PROOF_OF_AGE_CARD
-
REFUGEE_ID
public static final Type REFUGEE_ID
-
TRIBAL_ID
public static final Type TRIBAL_ID
-
VETERAN_ID
public static final Type VETERAN_ID
-
CITIZENSHIP_CERTIFICATE
public static final Type CITIZENSHIP_CERTIFICATE
-
MY_NUMBER_CARD
public static final Type MY_NUMBER_CARD
-
-
Method Detail
-
values
public static Type[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (Type c : Type.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Type valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-