com.prowidesoftware.swift.model.mx.dic.Incoterms1Code Maven / Gradle / Ivy
package com.prowidesoftware.swift.model.mx.dic;
import jakarta.xml.bind.annotation.XmlEnum;
import jakarta.xml.bind.annotation.XmlType;
/**
* Java class for Incoterms1Code.
*
*
The following schema fragment specifies the expected content contained within this class.
*
{@code
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
* }
*
*/
@XmlType(name = "Incoterms1Code")
@XmlEnum
public enum Incoterms1Code {
/**
* Ex Works (any mode of transport, including multimodal).
*
*/
EXW,
/**
* Free Carrier (any mode of transport, including multimodal).
*
*/
FCA,
/**
* Free Alongside Ship (sea and inland waterway transport).
*
*/
FAS,
/**
* Free On Board (sea and inland waterway transport).
*
*/
FOB,
/**
* Cost and Freight (sea and inland waterway transport).
*
*/
CFR,
/**
* Cost, Insurance and Freight (sea and inland waterway transport).
*
*/
CIF,
/**
* Carriage Paid To (any mode of transport, including multimodal).
*
*/
CPT,
/**
* Carriage and Insurance Paid to (any mode of transport, including multimodal).
*
*/
CIP,
/**
* Delivered At Frontier (any mode of transport, including multimodal).
*
*/
DAF,
/**
* Delivered Ex Ship (sea and inland waterway transport).
*
*/
DES,
/**
* Delivered Ex Quay (sea and inland waterway transport).
*
*/
DEQ,
/**
* Delivered Duty Unpaid (any mode of transport, including multimodal).
*
*/
DDU,
/**
* Delivered Duty Paid (any mode of transport, including multimodal).
*
*/
DDP;
public String value() {
return name();
}
public static Incoterms1Code fromValue(String v) {
return valueOf(v);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy