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

ebay.apis.shopping.eblbasecomponents.ProductSortCodeType 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 ProductSortCodeType. * *

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

*

 * <simpleType name="ProductSortCodeType">
 *   <restriction base="{http://www.w3.org/2001/XMLSchema}token">
 *     <enumeration value="Popularity"/>
 *     <enumeration value="Rating"/>
 *     <enumeration value="ReviewCount"/>
 *     <enumeration value="ItemCount"/>
 *     <enumeration value="Title"/>
 *     <enumeration value="CustomCode"/>
 *   </restriction>
 * </simpleType>
 * 
* */ @XmlType(name = "ProductSortCodeType") @XmlEnum public enum ProductSortCodeType { /** * * Sort by product popularity (as determined by eBay). * (This is the default sort order.) * * */ @XmlEnumValue("Popularity") POPULARITY("Popularity"), /** * * Sort by average rating. * * */ @XmlEnumValue("Rating") RATING("Rating"), /** * * Sort by the number of reviews on eBay. * * */ @XmlEnumValue("ReviewCount") REVIEW_COUNT("ReviewCount"), /** * * Sort by the number of active items listed with this product. * * */ @XmlEnumValue("ItemCount") ITEM_COUNT("ItemCount"), /** * * Sort by the product title. * * */ @XmlEnumValue("Title") TITLE("Title"), /** * * Reserved for values that are not available in the version of the schema * you are using. If eBay adds a new value to this code type as of a * newer version, we return CustomCode instead when you specify a * lower request version. * * */ @XmlEnumValue("CustomCode") CUSTOM_CODE("CustomCode"); private final String value; ProductSortCodeType(String v) { value = v; } public String value() { return value; } public static ProductSortCodeType fromValue(String v) { for (ProductSortCodeType c: ProductSortCodeType.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy