Package eu.de4a.iem.jaxb.common.types
Enum CanonicalEvidenceidkType
- java.lang.Object
-
- java.lang.Enum<CanonicalEvidenceidkType>
-
- eu.de4a.iem.jaxb.common.types.CanonicalEvidenceidkType
-
- All Implemented Interfaces:
Serializable,Comparable<CanonicalEvidenceidkType>
@CodingStyleguideUnaware public enum CanonicalEvidenceidkType extends Enum<CanonicalEvidenceidkType>
Java class for CanonicalEvidenceidkType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="CanonicalEvidenceidkType"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="HigherEdCertificate"/> <enumeration value="SecondaryEdCertificate"/> <enumeration value="ResidencyProof"/> <enumeration value="BirthCertificate"/> <enumeration value="MarriageCertificate"/> <enumeration value="CompanyRegistration"/> </restriction> </simpleType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BIRTH_CERTIFICATECOMPANY_REGISTRATIONHIGHER_ED_CERTIFICATEMARRIAGE_CERTIFICATERESIDENCY_PROOFSECONDARY_ED_CERTIFICATE
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static CanonicalEvidenceidkTypefromValue(String v)Stringvalue()static CanonicalEvidenceidkTypevalueOf(String name)Returns the enum constant of this type with the specified name.static CanonicalEvidenceidkType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
HIGHER_ED_CERTIFICATE
public static final CanonicalEvidenceidkType HIGHER_ED_CERTIFICATE
-
SECONDARY_ED_CERTIFICATE
public static final CanonicalEvidenceidkType SECONDARY_ED_CERTIFICATE
-
RESIDENCY_PROOF
public static final CanonicalEvidenceidkType RESIDENCY_PROOF
-
BIRTH_CERTIFICATE
public static final CanonicalEvidenceidkType BIRTH_CERTIFICATE
-
MARRIAGE_CERTIFICATE
public static final CanonicalEvidenceidkType MARRIAGE_CERTIFICATE
-
COMPANY_REGISTRATION
public static final CanonicalEvidenceidkType COMPANY_REGISTRATION
-
-
Method Detail
-
values
public static CanonicalEvidenceidkType[] 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 (CanonicalEvidenceidkType c : CanonicalEvidenceidkType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CanonicalEvidenceidkType 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
-
value
public String value()
-
fromValue
public static CanonicalEvidenceidkType fromValue(String v)
-
-