package org.kapott.hbci.sepa.jaxb.pain_008_002_01; import javax.xml.bind.annotation.XmlEnum; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for ChargeBearerTypeSDDCode. * * <p>The following schema fragment specifies the expected content contained within this class. * <p> * <pre> * <simpleType name="ChargeBearerTypeSDDCode"> * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <enumeration value="SLEV"/> * </restriction> * </simpleType> * </pre> * */ @XmlType(name = "ChargeBearerTypeSDDCode", namespace = "urn:swift:xsd:$pain.008.002.01") @XmlEnum public enum ChargeBearerTypeSDDCode { SLEV; public String value() { return name(); } public static ChargeBearerTypeSDDCode fromValue(String v) { return valueOf(v); } }