Enum VdsType

    • Enum Constant Detail

      • ARRIVAL_ATTESTATION

        public static final VdsType ARRIVAL_ATTESTATION
      • ICAO_EMERGENCY_TRAVEL_DOCUMENT

        public static final VdsType ICAO_EMERGENCY_TRAVEL_DOCUMENT
      • ICAO_VISA

        public static final VdsType ICAO_VISA
      • ADDRESS_STICKER_PASSPORT

        public static final VdsType ADDRESS_STICKER_PASSPORT
      • ADDRESS_STICKER_ID

        public static final VdsType ADDRESS_STICKER_ID
      • RESIDENCE_PERMIT

        public static final VdsType RESIDENCE_PERMIT
      • SOCIAL_INSURANCE_CARD

        public static final VdsType SOCIAL_INSURANCE_CARD
      • SUPPLEMENTARY_SHEET

        public static final VdsType SUPPLEMENTARY_SHEET
      • ALIENS_LAW

        public static final VdsType ALIENS_LAW
      • TEMP_PASSPORT

        public static final VdsType TEMP_PASSPORT
      • TEMP_PERSO

        public static final VdsType TEMP_PERSO
      • FICTION_CERT

        public static final VdsType FICTION_CERT
    • Method Detail

      • values

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

        public static VdsType 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
      • valueOf

        public static VdsType valueOf​(int vdsType)
        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:
        vdsType - 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
      • getValue

        public int getValue()