com.prowidesoftware.swift.model.mx.dic.ProductIdentifier2Code 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
package com.prowidesoftware.swift.model.mx.dic;
import javax.xml.bind.annotation.XmlEnum;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for ProductIdentifier2Code.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <simpleType name="ProductIdentifier2Code">
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <enumeration value="BINR"/>
* <enumeration value="COMD"/>
* <enumeration value="EANC"/>
* <enumeration value="HRTR"/>
* <enumeration value="MANI"/>
* <enumeration value="MODL"/>
* <enumeration value="PART"/>
* <enumeration value="QOTA"/>
* <enumeration value="STYL"/>
* <enumeration value="SUPI"/>
* <enumeration value="UPCC"/>
* </restriction>
* </simpleType>
*
*
*/
@XmlType(name = "ProductIdentifier2Code")
@XmlEnum
public enum ProductIdentifier2Code {
/**
* Product identifier assigned by the buyer.
*
*/
BINR,
/**
* A code to identify a product based on applicable commercial conditions.
*
*/
COMD,
/**
* The unique EAN (European Article Number) code.
*
*/
EANC,
/**
* Classification of goods as developed by the Customs Cooperation council.
*
*/
HRTR,
/**
* Product identifier as assigned by the manufacturer.
*
*/
MANI,
/**
* Reference number assigned by the manufacturer to differentiate variations in similar products in a class or group.
*
*/
MODL,
/**
* Reference assigned by the manufacturer to a product part.
*
*/
PART,
/**
* Product identifier used by the retail industry.
*
*/
QOTA,
/**
* Identification of the style of a product.
*
*/
STYL,
/**
* Number assigned to an article by the supplier of that article.
*
*/
SUPI,
/**
* Number assigned to a manufacturer's product by the Product Code Council.
*
*/
UPCC;
public String value() {
return name();
}
public static ProductIdentifier2Code fromValue(String v) {
return valueOf(v);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy