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 DocumentType2Code. * * <p>The following schema fragment specifies the expected content contained within this class. * <p> * <pre> * <simpleType name="DocumentType2Code"> * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <enumeration value="MSIN"/> * <enumeration value="CNFA"/> * <enumeration value="DNFA"/> * <enumeration value="CINV"/> * <enumeration value="CREN"/> * <enumeration value="DEBN"/> * <enumeration value="HIRI"/> * <enumeration value="SBIN"/> * <enumeration value="CMCN"/> * <enumeration value="SOAC"/> * <enumeration value="DISP"/> * </restriction> * </simpleType> * </pre> * */ @XmlType(name = "DocumentType2Code", namespace = "urn:sepade:xsd:pain.001.001.02") @XmlEnum public enum DocumentType2Code { MSIN, CNFA, DNFA, CINV, CREN, DEBN, HIRI, SBIN, CMCN, SOAC, DISP; public String value() { return name(); } public static DocumentType2Code fromValue(String v) { return valueOf(v); } }