All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.prowidesoftware.swift.model.mx.dic.UKTaxGroupUnitCode Maven / Gradle / Ivy

There is a newer version: SRU2024-10.2.4
Show newest version

package com.prowidesoftware.swift.model.mx.dic;

import javax.xml.bind.annotation.XmlEnum;
import javax.xml.bind.annotation.XmlEnumValue;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for UKTaxGroupUnitCode. * *

The following schema fragment specifies the expected content contained within this class. *

*

 * <simpleType name="UKTaxGroupUnitCode">
 *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *     <enumeration value="GRP1"/>
 *     <enumeration value="GRP2"/>
 *   </restriction>
 * </simpleType>
 * 
* */ @XmlType(name = "UKTaxGroupUnitCode") @XmlEnum public enum UKTaxGroupUnitCode { /** * The units that were purchased prior to the last ex-div date. * */ @XmlEnumValue("GRP1") GRP_1("GRP1"), /** * The units that were purchased since the ex-div date, and that benefit from the tax exemption. * */ @XmlEnumValue("GRP2") GRP_2("GRP2"); private final String value; UKTaxGroupUnitCode(String v) { value = v; } public String value() { return value; } public static UKTaxGroupUnitCode fromValue(String v) { for (UKTaxGroupUnitCode c: UKTaxGroupUnitCode.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy