com.prowidesoftware.swift.model.mx.dic.CutOff1Code 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 CutOff1Code.
*
*
The following schema fragment specifies the expected content contained within this class.
*
{@code
*
*
*
*
*
*
*
* }
*
*/
@XmlType(name = "CutOff1Code")
@XmlEnum
public enum CutOff1Code {
/**
* Cut-off may change to early.
*
*/
AERL,
/**
* Cut-off occurs before the DTCC (The Depository Trust and Clearing Corporation) standard settlement cut-off. Early cut-off usually 1: 30 Eastern Standard Time.
*
*/
EARL,
/**
* Cut-off is after settlement at DTCC (The Depository Trust and Clearing Corporation).
*
*/
LATE;
public String value() {
return name();
}
public static CutOff1Code fromValue(String v) {
return valueOf(v);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy