Changes since
the last release

com.ebay.soap.eBLBaseComponents
Enum URLTypeCodeType

java.lang.Object
  extended by java.lang.Enum<URLTypeCodeType>
      extended by com.ebay.soap.eBLBaseComponents.URLTypeCodeType
All Implemented Interfaces:
Serializable, Comparable<URLTypeCodeType>

public enum URLTypeCodeType
extends Enum<URLTypeCodeType>

Java class for URLTypeCodeType.

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

 <simpleType name="URLTypeCodeType">
   <restriction base="{http://www.w3.org/2001/XMLSchema}token">
     <enumeration value="ViewItemURL"/>
     <enumeration value="ViewUserURL"/>
     <enumeration value="MyeBayURL"/>
     <enumeration value="MyeBayBiddingURL"/>
     <enumeration value="MyeBayNotWonURL"/>
     <enumeration value="MyeBayWonURL"/>
     <enumeration value="MyeBayWatchingURL"/>
     <enumeration value="eBayStoreURL"/>
     <enumeration value="SmallLogoURL"/>
     <enumeration value="MediumLogoURL"/>
     <enumeration value="LargeLogoURL"/>
     <enumeration value="CustomCode"/>
   </restriction>
 </simpleType>
 
Note: Per JAXB standards, underscores are added to separate words in enumerations (e.g., PayPal becomes PAY_PAL).


Enum Constant Summary
CUSTOM_CODE
          Reserved for future use.
E_BAY_STORE_URL
          Full URL for eBay Stores.
LARGE_LOGO_URL
          Full URL for the large version of the "An eBay Marketplace" logo.
MEDIUM_LOGO_URL
          Full URL for the medium version of the "An eBay Marketplace" logo.
MYE_BAY_BIDDING_URL
          Full URL for viewing the items on which the user is bidding.
MYE_BAY_NOT_WON_URL
          Full URL for viewing the items on which the user bid but did not win.
MYE_BAY_URL
          Full URL for an eBay login page.
MYE_BAY_WATCHING_URL
          Full URL for viewing the items the user is currently watching.
MYE_BAY_WON_URL
          Full URL for viewing the items on which the user bid and also won.
SMALL_LOGO_URL
          Full URL for the small version of the "An eBay Marketplace" logo.
VIEW_ITEM_URL
          URL Prefix for viewing a particular listing.
VIEW_USER_URL
          URL Prefix for viewing the feedback for a particular userid.
 
Method Summary
static URLTypeCodeType fromValue(String v)
           
 String value()
           
static URLTypeCodeType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static URLTypeCodeType[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

VIEW_ITEM_URL

public static final URLTypeCodeType VIEW_ITEM_URL
URL Prefix for viewing a particular listing. Just add an item id.


VIEW_USER_URL

public static final URLTypeCodeType VIEW_USER_URL
URL Prefix for viewing the feedback for a particular userid. Just add a userid.


MYE_BAY_URL

public static final URLTypeCodeType MYE_BAY_URL
Full URL for an eBay login page.


MYE_BAY_BIDDING_URL

public static final URLTypeCodeType MYE_BAY_BIDDING_URL
Full URL for viewing the items on which the user is bidding.


MYE_BAY_NOT_WON_URL

public static final URLTypeCodeType MYE_BAY_NOT_WON_URL
Full URL for viewing the items on which the user bid but did not win.


MYE_BAY_WON_URL

public static final URLTypeCodeType MYE_BAY_WON_URL
Full URL for viewing the items on which the user bid and also won.


MYE_BAY_WATCHING_URL

public static final URLTypeCodeType MYE_BAY_WATCHING_URL
Full URL for viewing the items the user is currently watching.


E_BAY_STORE_URL

public static final URLTypeCodeType E_BAY_STORE_URL
Full URL for eBay Stores.


SMALL_LOGO_URL

public static final URLTypeCodeType SMALL_LOGO_URL
Full URL for the small version of the "An eBay Marketplace" logo.


MEDIUM_LOGO_URL

public static final URLTypeCodeType MEDIUM_LOGO_URL
Full URL for the medium version of the "An eBay Marketplace" logo.


LARGE_LOGO_URL

public static final URLTypeCodeType LARGE_LOGO_URL
Full URL for the large version of the "An eBay Marketplace" logo.


CUSTOM_CODE

public static final URLTypeCodeType CUSTOM_CODE
Reserved for future use.

Method Detail

values

public static URLTypeCodeType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (URLTypeCodeType c : URLTypeCodeType.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static URLTypeCodeType valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null

value

public String value()

fromValue

public static URLTypeCodeType fromValue(String v)

Changes since
the last release

The information contained in this document is proprietary and confidential. Use of this information and the eBay API requires a Non-Disclosure Agreement (NDA) between the user and eBay Inc. For information regarding a qualifying NDA, contact Developer Relations: developer-relations@ebay.com
© 2004-2009 eBay Inc. All rights reserved.