no.ks.fiks.arkiv.v1.innsyn.sok.MappeInkluder Maven / Gradle / Ivy
//
// This file was generated by the Eclipse Implementation of JAXB, v2.3.6
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2023.06.23 at 10:32:49 AM CEST
//
package no.ks.fiks.arkiv.v1.innsyn.sok;
import javax.xml.bind.annotation.XmlEnum;
import javax.xml.bind.annotation.XmlEnumValue;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for mappeInkluder.
*
*
The following schema fragment specifies the expected content contained within this class.
*
* <simpleType name="mappeInkluder">
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <enumeration value="noekkelord"/>
* <enumeration value="kryssreferanse"/>
* <enumeration value="part"/>
* <enumeration value="merknad"/>
* </restriction>
* </simpleType>
*
*
*/
@XmlType(name = "mappeInkluder")
@XmlEnum
public enum MappeInkluder {
@XmlEnumValue("noekkelord")
NOEKKELORD("noekkelord"),
@XmlEnumValue("kryssreferanse")
KRYSSREFERANSE("kryssreferanse"),
@XmlEnumValue("part")
PART("part"),
@XmlEnumValue("merknad")
MERKNAD("merknad");
private final String value;
MappeInkluder(String v) {
value = v;
}
public String value() {
return value;
}
public static MappeInkluder fromValue(String v) {
for (MappeInkluder c: MappeInkluder.values()) {
if (c.value.equals(v)) {
return c;
}
}
throw new IllegalArgumentException(v);
}
}