Package eu.de4a.iem.jaxb.common.types
Enum AtuLevelType
- java.lang.Object
-
- java.lang.Enum<AtuLevelType>
-
- eu.de4a.iem.jaxb.common.types.AtuLevelType
-
- All Implemented Interfaces:
Serializable,Comparable<AtuLevelType>
@CodingStyleguideUnaware public enum AtuLevelType extends Enum<AtuLevelType>
Java class for AtuLevelType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="AtuLevelType"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="nuts0"/> <enumeration value="nuts1"/> <enumeration value="nuts2"/> <enumeration value="nuts3"/> <enumeration value="lau"/> <enumeration value="edu"/> </restriction> </simpleType>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static AtuLevelTypefromValue(String v)Stringvalue()static AtuLevelTypevalueOf(String name)Returns the enum constant of this type with the specified name.static AtuLevelType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NUTS_0
public static final AtuLevelType NUTS_0
-
NUTS_1
public static final AtuLevelType NUTS_1
-
NUTS_2
public static final AtuLevelType NUTS_2
-
NUTS_3
public static final AtuLevelType NUTS_3
-
LAU
public static final AtuLevelType LAU
-
EDU
public static final AtuLevelType EDU
-
-
Method Detail
-
values
public static AtuLevelType[] 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 (AtuLevelType c : AtuLevelType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AtuLevelType 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 AtuLevelType fromValue(String v)
-
-