Enum Feature

    • 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_DAYS

        public static final Feature DURATION_OF_STAY_DAYS
      • DURATION_OF_STAY_MONTHS

        public static final Feature DURATION_OF_STAY_MONTHS
      • DURATION_OF_STAY_YEARS

        public static final Feature DURATION_OF_STAY_YEARS
      • DURATION_OF_STAY_RAWBYTES

        public static final Feature DURATION_OF_STAY_RAWBYTES
      • FACE_IMAGE

        public static final Feature FACE_IMAGE
      • FIRST_NAME

        public static final Feature FIRST_NAME
      • MRZ

        public static final Feature MRZ
      • 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
      • RAW_ADDRESS

        public static final Feature RAW_ADDRESS
      • SHEET_NUMBER

        public static final Feature SHEET_NUMBER
      • SOCIAL_INSURANCE_NUMBER

        public static final Feature SOCIAL_INSURANCE_NUMBER
      • STREET

        public static final Feature STREET
      • STREET_NR

        public static final Feature STREET_NR
      • 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 name
        NullPointerException - if the argument is null