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

ebay.apis.shopping.eblbasecomponents.CommentTypeCodeType Maven / Gradle / Ivy

Go to download

This Java client enables you to use Java to make API calls in the eBay Shopping API, which is an XML API. This maven build is simply the Apache CXF generated client code for the Shopping API WSDL.

The newest version!

package ebay.apis.shopping.eblbasecomponents;

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


/**
 * 

Java class for CommentTypeCodeType. * *

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

*

 * <simpleType name="CommentTypeCodeType">
 *   <restriction base="{http://www.w3.org/2001/XMLSchema}token">
 *     <enumeration value="Positive"/>
 *     <enumeration value="Neutral"/>
 *     <enumeration value="Negative"/>
 *     <enumeration value="Withdrawn"/>
 *     <enumeration value="IndependentlyWithdrawn"/>
 *     <enumeration value="CustomCode"/>
 *   </restriction>
 * </simpleType>
 * 
* */ @XmlType(name = "CommentTypeCodeType") @XmlEnum public enum CommentTypeCodeType { /** * * Positive feedback. Increases total feedback score. * * */ @XmlEnumValue("Positive") POSITIVE("Positive"), /** * * Neutral feedback. No effect on total feedback score. * * */ @XmlEnumValue("Neutral") NEUTRAL("Neutral"), /** * * Negative feedback. Decreases total feedback score. * * */ @XmlEnumValue("Negative") NEGATIVE("Negative"), /** * * Withdrawn feedback. Removes the effect of the original * feedback on total feedback score. Comments from withdrawn feedback * are still visible. * * */ @XmlEnumValue("Withdrawn") WITHDRAWN("Withdrawn"), /** * * Applies to the eBay Motors site only. Feedback is withdrawn based on * the decision of a third party. * * */ @XmlEnumValue("IndependentlyWithdrawn") INDEPENDENTLY_WITHDRAWN("IndependentlyWithdrawn"), /** * * Reserved for internal or future use. * * */ @XmlEnumValue("CustomCode") CUSTOM_CODE("CustomCode"); private final String value; CommentTypeCodeType(String v) { value = v; } public String value() { return value; } public static CommentTypeCodeType fromValue(String v) { for (CommentTypeCodeType c: CommentTypeCodeType.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy