com.prowidesoftware.swift.model.mx.dic.VotingParticipationMethod1Code 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
The newest version!
package com.prowidesoftware.swift.model.mx.dic;
import jakarta.xml.bind.annotation.XmlEnum;
import jakarta.xml.bind.annotation.XmlType;
/**
* Java class for VotingParticipationMethod1Code.
*
*
The following schema fragment specifies the expected content contained within this class.
*
{@code
*
*
*
*
*
*
*
*
*
*
* }
*
*/
@XmlType(name = "VotingParticipationMethod1Code")
@XmlEnum
public enum VotingParticipationMethod1Code {
/**
* Vote participation is via documents sent through physical post / mail.
*
*/
MAIL,
/**
* Vote participation is through physical attendance.
*
*/
PHYS,
/**
* Participation to the meeting is in person but the person is not voting.
*
*/
PHNV,
/**
* Vote participation is through a proxy person.
*
*/
PRXY,
/**
* Vote participation is through virtual meeting attendance method like multimedia and web based video or audio conferencing.
*
*/
VIRT,
/**
* Vote participation is through electronic means like email or dedicated standards messaging or web based voting applications.
*
*/
EVOT;
public String value() {
return name();
}
public static VotingParticipationMethod1Code fromValue(String v) {
return valueOf(v);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy