
com.prowidesoftware.swift.model.mx.dic.CashForecastMessage1Code Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pw-iso20022 Show documentation
Show all versions of pw-iso20022 Show documentation
Prowide Library for ISO 20022 messages
package com.prowidesoftware.swift.model.mx.dic;
import javax.xml.bind.annotation.XmlEnum;
import javax.xml.bind.annotation.XmlEnumValue;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for CashForecastMessage1Code.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <simpleType name="CashForecastMessage1Code">
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <enumeration value="CF40"/>
* <enumeration value="CF42"/>
* <enumeration value="CF41"/>
* <enumeration value="CF43"/>
* </restriction>
* </simpleType>
*
*
*/
@XmlType(name = "CashForecastMessage1Code")
@XmlEnum
public enum CashForecastMessage1Code {
/**
* Fund estimated cash forecast report (camt.040).
*
*/
@XmlEnumValue("CF40")
CF_40("CF40"),
/**
* Fund detailed estimated cash forecast Report (042)
*
*/
@XmlEnumValue("CF42")
CF_42("CF42"),
/**
* Fund confirmed cash forecast report (camt.041).
*
*/
@XmlEnumValue("CF41")
CF_41("CF41"),
/**
* Fund detailed confirmed cash forecast report (camt.043)
*
*/
@XmlEnumValue("CF43")
CF_43("CF43");
private final String value;
CashForecastMessage1Code(String v) {
value = v;
}
public String value() {
return value;
}
public static CashForecastMessage1Code fromValue(String v) {
for (CashForecastMessage1Code c: CashForecastMessage1Code.values()) {
if (c.value.equals(v)) {
return c;
}
}
throw new IllegalArgumentException(v);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy