Package de.tsenger.vdstools.seals
Enum VdsType
- java.lang.Object
-
- java.lang.Enum<VdsType>
-
- de.tsenger.vdstools.seals.VdsType
-
- All Implemented Interfaces:
Serializable,Comparable<VdsType>
public enum VdsType extends Enum<VdsType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ADDRESS_STICKER_IDADDRESS_STICKER_PASSPORTALIENS_LAWARRIVAL_ATTESTATIONFICTION_CERTICAO_EMERGENCY_TRAVEL_DOCUMENTICAO_VISARESIDENCE_PERMITSOCIAL_INSURANCE_CARDSUPPLEMENTARY_SHEETTEMP_PASSPORTTEMP_PERSO
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetValue()static VdsTypevalueOf(int vdsType)Returns the enum constant of this type with the specified name.static VdsTypevalueOf(String name)Returns the enum constant of this type with the specified name.static VdsType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
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 nameNullPointerException- 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 nameNullPointerException- if the argument is null
-
getValue
public int getValue()
-
-