com.prowidesoftware.swift.model.mx.dic.AutoBorrowing2Code Maven / Gradle / Ivy
package com.prowidesoftware.swift.model.mx.dic;
import jakarta.xml.bind.annotation.XmlEnum;
import jakarta.xml.bind.annotation.XmlType;
/**
* Java class for AutoBorrowing2Code.
*
*
The following schema fragment specifies the expected content contained within this class.
*
{@code
*
*
*
*
*
*
*
*
* }
*
*/
@XmlType(name = "AutoBorrowing2Code")
@XmlEnum
public enum AutoBorrowing2Code {
/**
* Only last resort borrowing should be considered to make settlement occur.
*
*/
LAMI,
/**
* No automatic borrowing should take place.
*
*/
NBOR,
/**
* Automatic borrowing should take place.
*
*/
YBOR,
/**
* Return of stocks should take place.
*
*/
RTRN;
public String value() {
return name();
}
public static AutoBorrowing2Code fromValue(String v) {
return valueOf(v);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy