com.prowidesoftware.swift.model.mx.dic.Status9Code 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 Status9Code.
*
*
The following schema fragment specifies the expected content contained within this class.
*
{@code
*
*
*
*
*
*
*
*
*
*
*
*
* }
*
*/
@XmlType(name = "Status9Code")
@XmlEnum
public enum Status9Code {
/**
* Instruction has been accepted and is validated for further processing.
*
*/
PACK,
/**
* Attendance is confirmed at the meeting.
*
*/
ATTC,
/**
* Instruction has been cancelled.
*
*/
CAND,
/**
* Instruction has been cancelled by the agent, for example, due to an event deadline extension.
*
*/
CSUB,
/**
* Accepted and sent along the chain.
*
*/
FRWD,
/**
* Instruction has been received by Issuer, equivalent to the confirmation of receipt of votes cast electronically.
*
*/
RCIS,
/**
* Rights holder has been registered to participate to the meeting.
*
*/
REGM,
/**
* Standing instruction is applied.
*
*/
STIN;
public String value() {
return name();
}
public static Status9Code fromValue(String v) {
return valueOf(v);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy