|
Changes since the last release |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<SellingManagerEmailTypeCodeType>
com.ebay.soap.eBLBaseComponents.SellingManagerEmailTypeCodeType
public enum SellingManagerEmailTypeCodeType
Java class for SellingManagerEmailTypeCodeType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="SellingManagerEmailTypeCodeType"> <restriction base="{http://www.w3.org/2001/XMLSchema}token"> <enumeration value="ManualEntry"/> <enumeration value="WinningBuyerEmail"/> <enumeration value="PaymentReminderEmail"/> <enumeration value="PaymentReceivedEmail"/> <enumeration value="RequestForShippingAddressEmail"/> <enumeration value="FeedbackReminderEmail"/> <enumeration value="ShipmentSentEmail"/> <enumeration value="PersonalizedEmail"/> <enumeration value="InvoiceNotification"/> <enumeration value="CustomEmailTemplate1"/> <enumeration value="CustomEmailTemplate2"/> <enumeration value="CustomEmailTemplate3"/> <enumeration value="CustomEmailTemplate4"/> <enumeration value="CustomEmailTemplate5"/> <enumeration value="CustomEmailTemplate6"/> <enumeration value="CustomEmailTemplate7"/> <enumeration value="CustomEmailTemplate8"/> <enumeration value="CustomEmailTemplate9"/> <enumeration value="CustomEmailTemplate10"/> <enumeration value="CustomEmailTemplate11"/> <enumeration value="CustomEmailTemplate12"/> <enumeration value="CustomEmailTemplate13"/> <enumeration value="CustomEmailTemplate14"/> <enumeration value="CustomEmailTemplate15"/> <enumeration value="CustomEmailTemplate16"/> <enumeration value="CustomEmailTemplate17"/> <enumeration value="CustomEmailTemplate18"/> <enumeration value="CustomEmailTemplate19"/> <enumeration value="CustomEmailTemplate20"/> <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
(out) Reserved for internal or future use. |
|
CUSTOM_EMAIL_TEMPLATE_1
Custom email template 1. |
|
CUSTOM_EMAIL_TEMPLATE_10
Custom email template 10. |
|
CUSTOM_EMAIL_TEMPLATE_11
Custom email template 11. |
|
CUSTOM_EMAIL_TEMPLATE_12
Custom email template 12. |
|
CUSTOM_EMAIL_TEMPLATE_13
Custom email template 13. |
|
CUSTOM_EMAIL_TEMPLATE_14
Custom email template 14. |
|
CUSTOM_EMAIL_TEMPLATE_15
Custom email template 15. |
|
CUSTOM_EMAIL_TEMPLATE_16
Custom email template 16. |
|
CUSTOM_EMAIL_TEMPLATE_17
Custom email template 17. |
|
CUSTOM_EMAIL_TEMPLATE_18
Custom email template 18. |
|
CUSTOM_EMAIL_TEMPLATE_19
Custom email template 19. |
|
CUSTOM_EMAIL_TEMPLATE_2
Custom email template 2. |
|
CUSTOM_EMAIL_TEMPLATE_20
Custom email template 20. |
|
CUSTOM_EMAIL_TEMPLATE_3
Custom email template 3. |
|
CUSTOM_EMAIL_TEMPLATE_4
Custom email template 4. |
|
CUSTOM_EMAIL_TEMPLATE_5
Custom email template 5. |
|
CUSTOM_EMAIL_TEMPLATE_6
Custom email template 6. |
|
CUSTOM_EMAIL_TEMPLATE_7
Custom email template 7. |
|
CUSTOM_EMAIL_TEMPLATE_8
Custom email template 8. |
|
CUSTOM_EMAIL_TEMPLATE_9
Custom email template 9. |
|
FEEDBACK_REMINDER_EMAIL
Feedback Reminder emails. |
|
INVOICE_NOTIFICATION
Invoice notification emails. |
|
MANUAL_ENTRY
Email logged manually. |
|
PAYMENT_RECEIVED_EMAIL
Payment received notification. |
|
PAYMENT_REMINDER_EMAIL
Payment Reminder emails. |
|
PERSONALIZED_EMAIL
Personalized emails. |
|
REQUEST_FOR_SHIPPING_ADDRESS_EMAIL
Request shipping address email. |
|
SHIPMENT_SENT_EMAIL
Shipment sent email. |
|
WINNING_BUYER_EMAIL
Winning Buyer Notification. |
Method Summary | |
---|---|
static SellingManagerEmailTypeCodeType |
fromValue(java.lang.String v)
|
java.lang.String |
value()
|
static SellingManagerEmailTypeCodeType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static SellingManagerEmailTypeCodeType[] |
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 |
---|
public static final SellingManagerEmailTypeCodeType MANUAL_ENTRY
public static final SellingManagerEmailTypeCodeType WINNING_BUYER_EMAIL
public static final SellingManagerEmailTypeCodeType PAYMENT_REMINDER_EMAIL
public static final SellingManagerEmailTypeCodeType PAYMENT_RECEIVED_EMAIL
public static final SellingManagerEmailTypeCodeType REQUEST_FOR_SHIPPING_ADDRESS_EMAIL
public static final SellingManagerEmailTypeCodeType FEEDBACK_REMINDER_EMAIL
public static final SellingManagerEmailTypeCodeType SHIPMENT_SENT_EMAIL
public static final SellingManagerEmailTypeCodeType PERSONALIZED_EMAIL
public static final SellingManagerEmailTypeCodeType INVOICE_NOTIFICATION
public static final SellingManagerEmailTypeCodeType CUSTOM_EMAIL_TEMPLATE_1
public static final SellingManagerEmailTypeCodeType CUSTOM_EMAIL_TEMPLATE_2
public static final SellingManagerEmailTypeCodeType CUSTOM_EMAIL_TEMPLATE_3
public static final SellingManagerEmailTypeCodeType CUSTOM_EMAIL_TEMPLATE_4
public static final SellingManagerEmailTypeCodeType CUSTOM_EMAIL_TEMPLATE_5
public static final SellingManagerEmailTypeCodeType CUSTOM_EMAIL_TEMPLATE_6
public static final SellingManagerEmailTypeCodeType CUSTOM_EMAIL_TEMPLATE_7
public static final SellingManagerEmailTypeCodeType CUSTOM_EMAIL_TEMPLATE_8
public static final SellingManagerEmailTypeCodeType CUSTOM_EMAIL_TEMPLATE_9
public static final SellingManagerEmailTypeCodeType CUSTOM_EMAIL_TEMPLATE_10
public static final SellingManagerEmailTypeCodeType CUSTOM_EMAIL_TEMPLATE_11
public static final SellingManagerEmailTypeCodeType CUSTOM_EMAIL_TEMPLATE_12
public static final SellingManagerEmailTypeCodeType CUSTOM_EMAIL_TEMPLATE_13
public static final SellingManagerEmailTypeCodeType CUSTOM_EMAIL_TEMPLATE_14
public static final SellingManagerEmailTypeCodeType CUSTOM_EMAIL_TEMPLATE_15
public static final SellingManagerEmailTypeCodeType CUSTOM_EMAIL_TEMPLATE_16
public static final SellingManagerEmailTypeCodeType CUSTOM_EMAIL_TEMPLATE_17
public static final SellingManagerEmailTypeCodeType CUSTOM_EMAIL_TEMPLATE_18
public static final SellingManagerEmailTypeCodeType CUSTOM_EMAIL_TEMPLATE_19
public static final SellingManagerEmailTypeCodeType CUSTOM_EMAIL_TEMPLATE_20
public static final SellingManagerEmailTypeCodeType CUSTOM_CODE
Method Detail |
---|
public static SellingManagerEmailTypeCodeType[] values()
for (SellingManagerEmailTypeCodeType c : SellingManagerEmailTypeCodeType.values()) System.out.println(c);
public static SellingManagerEmailTypeCodeType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name
java.lang.NullPointerException
- if the argument is nullpublic java.lang.String value()
public static SellingManagerEmailTypeCodeType fromValue(java.lang.String v)
|
Changes since the last release |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
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.