no.difi.begrep.sdp.schema_v10.SDPFysiskPostReturhaandtering Maven / Gradle / Ivy
//
// This file was generated by the Eclipse Implementation of JAXB, v2.3.7
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2024.11.06 at 01:54:33 PM UTC
//
package no.difi.begrep.sdp.schema_v10;
import javax.xml.bind.annotation.XmlEnum;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for FysiskPostReturhaandtering.
*
*
The following schema fragment specifies the expected content contained within this class.
*
* <simpleType name="FysiskPostReturhaandtering">
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <enumeration value="DIREKTE_RETUR"/>
* <enumeration value="MAKULERING_MED_MELDING"/>
* </restriction>
* </simpleType>
*
*
*/
@XmlType(name = "FysiskPostReturhaandtering")
@XmlEnum
public enum SDPFysiskPostReturhaandtering {
DIREKTE_RETUR,
MAKULERING_MED_MELDING;
public String value() {
return name();
}
public static SDPFysiskPostReturhaandtering fromValue(String v) {
return valueOf(v);
}
}