
com.prowidesoftware.swift.model.mx.dic.UnderlyingIdentification1Code Maven / Gradle / Ivy
package com.prowidesoftware.swift.model.mx.dic;
import javax.xml.bind.annotation.XmlEnum;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for UnderlyingIdentification1Code.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <simpleType name="UnderlyingIdentification1Code">
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <enumeration value="UKWN"/>
* <enumeration value="BSKT"/>
* <enumeration value="INDX"/>
* </restriction>
* </simpleType>
*
*
*/
@XmlType(name = "UnderlyingIdentification1Code")
@XmlEnum
public enum UnderlyingIdentification1Code {
/**
* Unknown (not available) underlying identification code.
*
*/
UKWN,
/**
* Basket of indexes identification code.
*
*/
BSKT,
/**
* Index identification code.
*
*/
INDX;
public String value() {
return name();
}
public static UnderlyingIdentification1Code fromValue(String v) {
return valueOf(v);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy