org.fpml.fpml_5.confirmation.LoanTransferFeePaidByEnum Maven / Gradle / Ivy
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.2
// See https://javaee.github.io/jaxb-v2/
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2024.05.10 at 03:58:40 PM UTC
//
package org.fpml.fpml_5.confirmation;
import javax.xml.bind.annotation.XmlEnum;
import javax.xml.bind.annotation.XmlEnumValue;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for LoanTransferFeePaidByEnum.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <simpleType name="LoanTransferFeePaidByEnum">
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <enumeration value="BuyerSplitOneHalf"/>
* <enumeration value="OneFeePaidByBuyer"/>
* <enumeration value="OneFeePaidBySeller"/>
* <enumeration value="PaidByBuyer"/>
* <enumeration value="PaidBySeller"/>
* <enumeration value="SellerSplitOneHalf"/>
* <enumeration value="SplitFull"/>
* </restriction>
* </simpleType>
*
*
*/
@XmlType(name = "LoanTransferFeePaidByEnum")
@XmlEnum
public enum LoanTransferFeePaidByEnum {
/**
* Buyer is responsible for one half of one allocation's assignment fee (regardless of the number of allocations).
*
*/
@XmlEnumValue("BuyerSplitOneHalf")
BUYER_SPLIT_ONE_HALF("BuyerSplitOneHalf"),
/**
* Buyer is responsible for one allocation's assignment fee (regardless of the number of allocations).
*
*/
@XmlEnumValue("OneFeePaidByBuyer")
ONE_FEE_PAID_BY_BUYER("OneFeePaidByBuyer"),
/**
* Seller is responsible for one allocation's assignment fee (regardless of the number of allocations).
*
*/
@XmlEnumValue("OneFeePaidBySeller")
ONE_FEE_PAID_BY_SELLER("OneFeePaidBySeller"),
/**
* Fee is paid by buyer.
*
*/
@XmlEnumValue("PaidByBuyer")
PAID_BY_BUYER("PaidByBuyer"),
/**
* Fee is paid by seller.
*
*/
@XmlEnumValue("PaidBySeller")
PAID_BY_SELLER("PaidBySeller"),
/**
* Seller is responsible for one half of one allocation's assignment fee (regardless of the number of allocations).
*
*/
@XmlEnumValue("SellerSplitOneHalf")
SELLER_SPLIT_ONE_HALF("SellerSplitOneHalf"),
/**
* Ticket owner is responsible for one allocation's assignment fee (regardless of the number of allocations).
*
*/
@XmlEnumValue("SplitFull")
SPLIT_FULL("SplitFull");
private final String value;
LoanTransferFeePaidByEnum(String v) {
value = v;
}
public String value() {
return value;
}
public static LoanTransferFeePaidByEnum fromValue(String v) {
for (LoanTransferFeePaidByEnum c: LoanTransferFeePaidByEnum.values()) {
if (c.value.equals(v)) {
return c;
}
}
throw new IllegalArgumentException(v);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy