Enum CreditPointSystemEnumType
- java.lang.Object
-
- java.lang.Enum<CreditPointSystemEnumType>
-
- eu.europa.data.europass.model.credentials_.CreditPointSystemEnumType
-
- All Implemented Interfaces:
Serializable,Comparable<CreditPointSystemEnumType>
@CodingStyleguideUnaware public enum CreditPointSystemEnumType extends Enum<CreditPointSystemEnumType>
Java class for CreditPointSystemEnumType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="CreditPointSystemEnumType"> <restriction base="{http://www.w3.org/2001/XMLSchema}normalizedString"> <enumeration value="http://data.europa.eu/europass/educationalCreditPointSystem/ects"/> <enumeration value="http://data.europa.eu/europass/educationalCreditPointSystem/ecvet"/> </restriction> </simpleType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description HTTP_____DATA___EUROPA___EU___EUROPASS___EDUCATIONAL_CREDIT_POINT_SYSTEM___ECTSHTTP_____DATA___EUROPA___EU___EUROPASS___EDUCATIONAL_CREDIT_POINT_SYSTEM___ECVET
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static CreditPointSystemEnumTypefromValue(String v)Stringvalue()static CreditPointSystemEnumTypevalueOf(String name)Returns the enum constant of this type with the specified name.static CreditPointSystemEnumType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
HTTP_____DATA___EUROPA___EU___EUROPASS___EDUCATIONAL_CREDIT_POINT_SYSTEM___ECTS
public static final CreditPointSystemEnumType HTTP_____DATA___EUROPA___EU___EUROPASS___EDUCATIONAL_CREDIT_POINT_SYSTEM___ECTS
-
HTTP_____DATA___EUROPA___EU___EUROPASS___EDUCATIONAL_CREDIT_POINT_SYSTEM___ECVET
public static final CreditPointSystemEnumType HTTP_____DATA___EUROPA___EU___EUROPASS___EDUCATIONAL_CREDIT_POINT_SYSTEM___ECVET
-
-
Method Detail
-
values
public static CreditPointSystemEnumType[] 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 (CreditPointSystemEnumType c : CreditPointSystemEnumType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CreditPointSystemEnumType 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 CreditPointSystemEnumType fromValue(String v)
-
-