Enum CommonFieldType

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<CommonFieldType>

    public enum CommonFieldType
    extends java.lang.Enum<CommonFieldType>
    Common field types.
    • Enum Constant Detail

      • SURNAME

        public static final CommonFieldType SURNAME
        Person surname field.
      • MAIDEN_NAME

        public static final CommonFieldType MAIDEN_NAME
        Person maiden name field.
      • GIVEN_NAMES

        public static final CommonFieldType GIVEN_NAMES
        Person given names field.
      • BIRTH_DATE

        public static final CommonFieldType BIRTH_DATE
        Person birth date field.
      • NATIONALITY

        public static final CommonFieldType NATIONALITY
        Person nationality field.
      • BIRTHPLACE

        public static final CommonFieldType BIRTHPLACE
        Person birthplace field.
      • EXPIRY_DATE

        public static final CommonFieldType EXPIRY_DATE
        Document expiry date field.
      • EYE_COLOR

        public static final CommonFieldType EYE_COLOR
        Person eye color field.
      • ISSUE_DATE

        public static final CommonFieldType ISSUE_DATE
        Document issue date field.
      • ISSUING_AUTHORITY

        public static final CommonFieldType ISSUING_AUTHORITY
        Document issuing authority field.
      • PSEUDONYM

        public static final CommonFieldType PSEUDONYM
        Pseudonym field.
      • ISSUING_COUNTRY

        public static final CommonFieldType ISSUING_COUNTRY
        Issuing country field.
      • SIGNATURE

        public static final CommonFieldType SIGNATURE
        Signature field.
      • VALID_FROM_DATE

        public static final CommonFieldType VALID_FROM_DATE
        Date of start of validity field.
      • ROUTING_NUMBER

        public static final CommonFieldType ROUTING_NUMBER
        Check routing number.
      • ACCOUNT_NUMBER

        public static final CommonFieldType ACCOUNT_NUMBER
        Check account number.
      • PLACE_OF_ISSUE

        public static final CommonFieldType PLACE_OF_ISSUE
        Place of issue for the identity card.
      • TITLE_TYPE

        public static final CommonFieldType TITLE_TYPE
        Type of the title field in the identity document.
      • REMARKS

        public static final CommonFieldType REMARKS
        Remarks field in the identity document.
      • CARD_ACCESS_NUMBER

        public static final CommonFieldType CARD_ACCESS_NUMBER
        Card access number field.
    • Method Detail

      • values

        public static CommonFieldType[] 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 (CommonFieldType c : CommonFieldType.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static CommonFieldType 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 name
        java.lang.NullPointerException - if the argument is null