com.prowidesoftware.swift.model.mx.dic.VoteInstruction2Code 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.XmlType;
/**
* Java class for VoteInstruction2Code.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <simpleType name="VoteInstruction2Code">
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <enumeration value="CFOR"/>
* <enumeration value="CAGS"/>
* <enumeration value="ABST"/>
* <enumeration value="WTHH"/>
* <enumeration value="WMGT"/>
* <enumeration value="AMGT"/>
* <enumeration value="NOAC"/>
* <enumeration value="DISC"/>
* </restriction>
* </simpleType>
*
*
*/
@XmlType(name = "VoteInstruction2Code")
@XmlEnum
public enum VoteInstruction2Code {
/**
* Vote in favour of a meeting resolution.
*
*/
CFOR,
/**
* Vote against a meeting resolution.
*
*/
CAGS,
/**
* Active vote expressed as abstain (no opinion).
*
*/
ABST,
/**
* Participant to a meeting withholds its vote for a meeting resolution . This action is usually taken in order to indicate a strong disagreement with a resolution (US market).
*
*/
WTHH,
/**
* Vote instruction is in line with the voting recommendations of the management.
*
*/
WMGT,
/**
* Vote instruction is in against the voting recommendations of the management.
*
*/
AMGT,
/**
* Indicates a recommendation to take no action
*
*/
NOAC,
/**
* Voting party is assigned discretionary right to vote for one resolution.
*
*/
DISC;
public String value() {
return name();
}
public static VoteInstruction2Code fromValue(String v) {
return valueOf(v);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy