Package de.tsenger.vdstools.vds
Enum Feature
- java.lang.Object
-
- java.lang.Enum<Feature>
-
- de.tsenger.vdstools.vds.Feature
-
- All Implemented Interfaces:
Serializable,Comparable<Feature>
public enum Feature extends Enum<Feature>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ADDITIONAL_FEATURESADDRESSAGSAZRBIRTH_NAMEDOCUMENT_NUMBERDURATION_OF_STAYFACE_IMAGEFIRST_NAMEMRZMRZ_MRVAMRZ_MRVBNUMBER_OF_ENTRIESPASSPORT_NUMBERPOSTAL_CODESHEET_NUMBERSOCIAL_INSURANCE_NUMBERSURNAMEVISA_TYPE
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static FeaturevalueOf(String name)Returns the enum constant of this type with the specified name.static Feature[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ADDITIONAL_FEATURES
public static final Feature ADDITIONAL_FEATURES
-
AGS
public static final Feature AGS
-
AZR
public static final Feature AZR
-
BIRTH_NAME
public static final Feature BIRTH_NAME
-
DOCUMENT_NUMBER
public static final Feature DOCUMENT_NUMBER
-
DURATION_OF_STAY
public static final Feature DURATION_OF_STAY
-
FACE_IMAGE
public static final Feature FACE_IMAGE
-
FIRST_NAME
public static final Feature FIRST_NAME
-
MRZ
public static final Feature MRZ
-
MRZ_MRVA
public static final Feature MRZ_MRVA
-
MRZ_MRVB
public static final Feature MRZ_MRVB
-
NUMBER_OF_ENTRIES
public static final Feature NUMBER_OF_ENTRIES
-
PASSPORT_NUMBER
public static final Feature PASSPORT_NUMBER
-
POSTAL_CODE
public static final Feature POSTAL_CODE
-
ADDRESS
public static final Feature ADDRESS
-
SHEET_NUMBER
public static final Feature SHEET_NUMBER
-
SOCIAL_INSURANCE_NUMBER
public static final Feature SOCIAL_INSURANCE_NUMBER
-
SURNAME
public static final Feature SURNAME
-
VISA_TYPE
public static final Feature VISA_TYPE
-
-
Method Detail
-
values
public static Feature[] 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 (Feature c : Feature.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Feature valueOf(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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-