Changes since
the last release

com.ebay.soap.eBLBaseComponents
Enum CommentTypeCodeType

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

public enum CommentTypeCodeType
extends Enum<CommentTypeCodeType>

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>
 
Note: Per JAXB standards, underscores are added to separate words in enumerations (e.g., PayPal becomes PAY_PAL).


Enum Constant Summary
CUSTOM_CODE
          This value is reserved for internal or future use.
INDEPENDENTLY_WITHDRAWN
          This value indicates that a submitted Feedback entry was withdrawn based on the decision of a third-party (such as eBay).
NEGATIVE
          This value indicates that the submitting user's experience with the other user (receiving feedback) was rated as a "Negative" experience.
NEUTRAL
          This value indicates that the submitting user's experience with the other user (receiving feedback) was rated as a "Neutral" experience.
POSITIVE
          This value indicates that the submitting user's experience with the other user (receiving feedback) was rated as a "Positive" experience.
WITHDRAWN
          This value indicates that a submitted Feedback entry was withdrawn.
 
Method Summary
static CommentTypeCodeType fromValue(String v)
           
 String value()
           
static CommentTypeCodeType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static CommentTypeCodeType[] 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

POSITIVE

public static final CommentTypeCodeType POSITIVE
This value indicates that the submitting user's experience with the other user (receiving feedback) was rated as a "Positive" experience. If an eBay user receives a Positive rating for an order line item from a Verified User, their overall Feedback score increases by a value of 1.


NEUTRAL

public static final CommentTypeCodeType NEUTRAL
This value indicates that the submitting user's experience with the other user (receiving feedback) was rated as a "Neutral" experience. If an eBay user receives a Neutral rating for an order line item from a Verified User, their overall Feedback score remains the same.


NEGATIVE

public static final CommentTypeCodeType NEGATIVE
This value indicates that the submitting user's experience with the other user (receiving feedback) was rated as a "Negative" experience. If an eBay user receives a Negative rating for an order line item from a Verified User, their overall Feedback score decreases by a value of 1.


WITHDRAWN

public static final CommentTypeCodeType WITHDRAWN
This value indicates that a submitted Feedback entry was withdrawn. If a Feedback entry is withdrawn, the effect of that entry on the overall Feedback score is nullified. However, Feedback comments from the withdrawn entry are still visible.


INDEPENDENTLY_WITHDRAWN

public static final CommentTypeCodeType INDEPENDENTLY_WITHDRAWN
This value indicates that a submitted Feedback entry was withdrawn based on the decision of a third-party (such as eBay). If a Feedback entry is withdrawn, the effect of that entry on the overall Feedback score is nullified.

This value is only applicable to the eBay Motors site only.


CUSTOM_CODE

public static final CommentTypeCodeType CUSTOM_CODE
This value is reserved for internal or future use.

Method Detail

values

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

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

valueOf

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