All Downloads are FREE. Search and download functionalities are using the official Maven repository.

no.udi.mt_1067_nav_data.v1.Alternativ Maven / Gradle / Ivy

There is a newer version: 1.2019.09.25-00.21-49b69f0625e0
Show newest version

package no.udi.mt_1067_nav_data.v1;

import javax.xml.bind.annotation.XmlEnum;
import javax.xml.bind.annotation.XmlEnumValue;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for Alternativ. * *

The following schema fragment specifies the expected content contained within this class. *

*

 * <simpleType name="Alternativ">
 *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *     <enumeration value="Ja"/>
 *     <enumeration value="Nei"/>
 *   </restriction>
 * </simpleType>
 * 
* */ @XmlType(name = "Alternativ") @XmlEnum public enum Alternativ { @XmlEnumValue("Ja") JA("Ja"), @XmlEnumValue("Nei") NEI("Nei"); private final String value; Alternativ(String v) { value = v; } public String value() { return value; } public static Alternativ fromValue(String v) { for (Alternativ c: Alternativ.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy