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