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