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

no.difi.begrep.sdp.schema_v10.SDPSikkerhetsnivaa Maven / Gradle / Ivy

//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.0 
// See https://javaee.github.io/jaxb-v2/ 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2022.11.16 at 09:22:53 AM UTC 
//


package no.difi.begrep.sdp.schema_v10;

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


/**
 * 

Java class for Sikkerhetsnivaa. * *

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

*

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy