Changes since
the last release

com.ebay.soap.eBLBaseComponents
Enum ReturnStatusCodeType

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

public enum ReturnStatusCodeType
extends Enum<ReturnStatusCodeType>

Java class for ReturnStatusCodeType.

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

 <simpleType name="ReturnStatusCodeType">
   <restriction base="{http://www.w3.org/2001/XMLSchema}token">
     <enumeration value="Invalid"/>
     <enumeration value="NotApplicable"/>
     <enumeration value="ReturnRequestPendingApproval"/>
     <enumeration value="ReturnRequestRejected"/>
     <enumeration value="ReturnOpen"/>
     <enumeration value="ReturnShipped"/>
     <enumeration value="ReturnDelivered"/>
     <enumeration value="ReturnClosedWithRefund"/>
     <enumeration value="ReturnClosedEscalated"/>
     <enumeration value="ReturnClosedNoRefund"/>
     <enumeration value="ReturnEscalatedPendingBuyer"/>
     <enumeration value="ReturnEscalatedPendingSeller"/>
     <enumeration value="ReturnEscalatedPendingCS"/>
     <enumeration value="ReturnEscalatedClosedWithRefund"/>
     <enumeration value="ReturnEscalatedClosedNoRefund"/>
     <enumeration value="ReturnEscalated"/>
     <enumeration value="ReturnRequestPending"/>
     <enumeration value="ReturnRequestClosedWithRefund"/>
     <enumeration value="ReturnRequestClosedNoRefund"/>
     <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 internal or future use.
INVALID
          This value indicates that the return request is invalid.
NOT_APPLICABLE
          This value indicates that the return request is not applicable.
RETURN_CLOSED_ESCALATED
          This value indicates that a return request was closed after being escalated to an eBay return case.
RETURN_CLOSED_NO_REFUND
          This value indicates that a return request was closed with no refund issued to the buyer.
RETURN_CLOSED_WITH_REFUND
          This value indicates that a return request was closed with a refund issued to the buyer.
RETURN_DELIVERED
          This value indicates that the seller has received the item(s) that the buyer return shipped.
RETURN_ESCALATED
          This value indicates that a return request was escalated to an eBay return case.
RETURN_ESCALATED_CLOSED_NO_REFUND
          This value indicates that a return request was escalated to an eBay return case, but the case was closed with no refund issued to the buyer.
RETURN_ESCALATED_CLOSED_WITH_REFUND
          This value indicates that a return request was escalated to an eBay return case, but the case was closed with a refund issued to the buyer.
RETURN_ESCALATED_PENDING_BUYER
          This value indicates that a return request was escalated to an eBay return case, and the case is awaiting a response from the buyer.
RETURN_ESCALATED_PENDING_CS
          This value indicates that a return request was escalated to an eBay return case, and the case is awaiting a response from eBay Customer Support.
RETURN_ESCALATED_PENDING_SELLER
          This value indicates that a return request was escalated to an eBay return case, and the case is awaiting a response from the seller.
RETURN_OPEN
          This value indicates that a return request was successfully opened by the buyer.
RETURN_REQUEST_CLOSED_NO_REFUND
          This value indicates that the return request was closed with no refund to the buyer.
RETURN_REQUEST_CLOSED_WITH_REFUND
          This value indicates that the return request was closed with a refund to the buyer.
RETURN_REQUEST_PENDING
          This value indicates that the return request is currently in the pending state.
RETURN_REQUEST_PENDING_APPROVAL
          This value indicates that the return request has been initiated by the buyer and is pending approval by the seller.
RETURN_REQUEST_REJECTED
          This value indicates that the buyer's return request was rejected by the seller.
RETURN_SHIPPED
          This value indicates that the buyer has return shipped the item(s) in the return request back to the seller.
 
Method Summary
static ReturnStatusCodeType fromValue(String v)
           
 String value()
           
static ReturnStatusCodeType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static ReturnStatusCodeType[] 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

INVALID

public static final ReturnStatusCodeType INVALID
This value indicates that the return request is invalid.


NOT_APPLICABLE

public static final ReturnStatusCodeType NOT_APPLICABLE
This value indicates that the return request is not applicable.


RETURN_REQUEST_PENDING_APPROVAL

public static final ReturnStatusCodeType RETURN_REQUEST_PENDING_APPROVAL
This value indicates that the return request has been initiated by the buyer and is pending approval by the seller.


RETURN_REQUEST_REJECTED

public static final ReturnStatusCodeType RETURN_REQUEST_REJECTED
This value indicates that the buyer's return request was rejected by the seller.


RETURN_OPEN

public static final ReturnStatusCodeType RETURN_OPEN
This value indicates that a return request was successfully opened by the buyer.


RETURN_SHIPPED

public static final ReturnStatusCodeType RETURN_SHIPPED
This value indicates that the buyer has return shipped the item(s) in the return request back to the seller.


RETURN_DELIVERED

public static final ReturnStatusCodeType RETURN_DELIVERED
This value indicates that the seller has received the item(s) that the buyer return shipped.


RETURN_CLOSED_WITH_REFUND

public static final ReturnStatusCodeType RETURN_CLOSED_WITH_REFUND
This value indicates that a return request was closed with a refund issued to the buyer.


RETURN_CLOSED_ESCALATED

public static final ReturnStatusCodeType RETURN_CLOSED_ESCALATED
This value indicates that a return request was closed after being escalated to an eBay return case.


RETURN_CLOSED_NO_REFUND

public static final ReturnStatusCodeType RETURN_CLOSED_NO_REFUND
This value indicates that a return request was closed with no refund issued to the buyer.


RETURN_ESCALATED_PENDING_BUYER

public static final ReturnStatusCodeType RETURN_ESCALATED_PENDING_BUYER
This value indicates that a return request was escalated to an eBay return case, and the case is awaiting a response from the buyer.


RETURN_ESCALATED_PENDING_SELLER

public static final ReturnStatusCodeType RETURN_ESCALATED_PENDING_SELLER
This value indicates that a return request was escalated to an eBay return case, and the case is awaiting a response from the seller.


RETURN_ESCALATED_PENDING_CS

public static final ReturnStatusCodeType RETURN_ESCALATED_PENDING_CS
This value indicates that a return request was escalated to an eBay return case, and the case is awaiting a response from eBay Customer Support.


RETURN_ESCALATED_CLOSED_WITH_REFUND

public static final ReturnStatusCodeType RETURN_ESCALATED_CLOSED_WITH_REFUND
This value indicates that a return request was escalated to an eBay return case, but the case was closed with a refund issued to the buyer.


RETURN_ESCALATED_CLOSED_NO_REFUND

public static final ReturnStatusCodeType RETURN_ESCALATED_CLOSED_NO_REFUND
This value indicates that a return request was escalated to an eBay return case, but the case was closed with no refund issued to the buyer.


RETURN_ESCALATED

public static final ReturnStatusCodeType RETURN_ESCALATED
This value indicates that a return request was escalated to an eBay return case.


RETURN_REQUEST_PENDING

public static final ReturnStatusCodeType RETURN_REQUEST_PENDING
This value indicates that the return request is currently in the pending state.


RETURN_REQUEST_CLOSED_WITH_REFUND

public static final ReturnStatusCodeType RETURN_REQUEST_CLOSED_WITH_REFUND
This value indicates that the return request was closed with a refund to the buyer.


RETURN_REQUEST_CLOSED_NO_REFUND

public static final ReturnStatusCodeType RETURN_REQUEST_CLOSED_NO_REFUND
This value indicates that the return request was closed with no refund to the buyer.


CUSTOM_CODE

public static final ReturnStatusCodeType CUSTOM_CODE
Reserved for internal or future use.

Method Detail

values

public static ReturnStatusCodeType[] 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 (ReturnStatusCodeType c : ReturnStatusCodeType.values())
    System.out.println(c);

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

valueOf

public static ReturnStatusCodeType 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 ReturnStatusCodeType 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.