
com.prowidesoftware.swift.model.mx.dic.AllocationStatus1Code Maven / Gradle / Ivy
package com.prowidesoftware.swift.model.mx.dic;
import javax.xml.bind.annotation.XmlEnum;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for AllocationStatus1Code.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <simpleType name="AllocationStatus1Code">
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <enumeration value="AOLF"/>
* <enumeration value="AOLP"/>
* </restriction>
* </simpleType>
*
*
*/
@XmlType(name = "AllocationStatus1Code")
@XmlEnum
public enum AllocationStatus1Code {
/**
* Instruction has been fully covered by collateral.
*
*/
AOLF,
/**
* Instruction has been partially covered by collateral.
*
*/
AOLP;
public String value() {
return name();
}
public static AllocationStatus1Code fromValue(String v) {
return valueOf(v);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy