|
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<ShippingPackageCodeType>
com.ebay.soap.eBLBaseComponents.ShippingPackageCodeType
public enum ShippingPackageCodeType
Java class for ShippingPackageCodeType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="ShippingPackageCodeType"> <restriction base="{http://www.w3.org/2001/XMLSchema}token"> <enumeration value="None"/> <enumeration value="Letter"/> <enumeration value="LargeEnvelope"/> <enumeration value="USPSLargePack"/> <enumeration value="VeryLargePack"/> <enumeration value="ExtraLargePack"/> <enumeration value="UPSLetter"/> <enumeration value="USPSFlatRateEnvelope"/> <enumeration value="PackageThickEnvelope"/> <enumeration value="Roll"/> <enumeration value="Europallet"/> <enumeration value="OneWayPallet"/> <enumeration value="BulkyGoods"/> <enumeration value="Furniture"/> <enumeration value="Cars"/> <enumeration value="Motorbikes"/> <enumeration value="Caravan"/> <enumeration value="IndustryVehicles"/> <enumeration value="ParcelOrPaddedEnvelope"/> <enumeration value="SmallCanadaPostBox"/> <enumeration value="MediumCanadaPostBox"/> <enumeration value="LargeCanadaPostBox"/> <enumeration value="SmallCanadaPostBubbleMailer"/> <enumeration value="MediumCanadaPostBubbleMailer"/> <enumeration value="LargeCanadaPostBubbleMailer"/> <enumeration value="PaddedBags"/> <enumeration value="ToughBags"/> <enumeration value="ExpandableToughBags"/> <enumeration value="MailingBoxes"/> <enumeration value="Winepak"/> <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 | |
---|---|
BULKY_GOODS
Bulky goods |
|
CARAVAN
Caravan |
|
CARS
Cars |
|
CUSTOM_CODE
Reserved for internal or future use. |
|
EUROPALLET
Europallet |
|
EXPANDABLE_TOUGH_BAGS
Expandable Tough Bags |
|
EXTRA_LARGE_PACK
Extra Large Package/Oversize 3 |
|
FURNITURE
Furniture |
|
INDUSTRY_VEHICLES
Industry vehicles |
|
LARGE_CANADA_POST_BOX
Large Canada Post Box |
|
LARGE_CANADA_POST_BUBBLE_MAILER
Large Canada Post Bubble Mailer |
|
LARGE_ENVELOPE
LargeEnvelope |
|
LETTER
Letter |
|
MAILING_BOXES
Mailing Boxes |
|
MEDIUM_CANADA_POST_BOX
Medium Canada Post Box |
|
MEDIUM_CANADA_POST_BUBBLE_MAILER
Medium Canada Post Bubble Mailer |
|
MOTORBIKES
Motorbikes |
|
NONE
None |
|
ONE_WAY_PALLET
Onewaypallet |
|
PACKAGE_THICK_ENVELOPE
Package/thick envelope |
|
PADDED_BAGS
Padded Bags |
|
PARCEL_OR_PADDED_ENVELOPE
Parcel or padded Envelope |
|
ROLL
Roll |
|
SMALL_CANADA_POST_BOX
Small Canada Post Box |
|
SMALL_CANADA_POST_BUBBLE_MAILER
Small Canada Post Bubble Mailer |
|
TOUGH_BAGS
Tough Bags |
|
UPS_LETTER
UPS Letter |
|
USPS_FLAT_RATE_ENVELOPE
USPS Flat Rate Envelope |
|
USPS_LARGE_PACK
USPS Large Package/Oversize 1 |
|
VERY_LARGE_PACK
Very Large Package/Oversize 2 |
|
WINEPAK
Winepak |
Method Summary | |
---|---|
static ShippingPackageCodeType |
fromValue(java.lang.String v)
|
java.lang.String |
value()
|
static ShippingPackageCodeType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static ShippingPackageCodeType[] |
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 ShippingPackageCodeType NONE
public static final ShippingPackageCodeType LETTER
public static final ShippingPackageCodeType LARGE_ENVELOPE
public static final ShippingPackageCodeType USPS_LARGE_PACK
public static final ShippingPackageCodeType VERY_LARGE_PACK
public static final ShippingPackageCodeType EXTRA_LARGE_PACK
public static final ShippingPackageCodeType UPS_LETTER
public static final ShippingPackageCodeType USPS_FLAT_RATE_ENVELOPE
public static final ShippingPackageCodeType PACKAGE_THICK_ENVELOPE
public static final ShippingPackageCodeType ROLL
public static final ShippingPackageCodeType EUROPALLET
public static final ShippingPackageCodeType ONE_WAY_PALLET
public static final ShippingPackageCodeType BULKY_GOODS
public static final ShippingPackageCodeType FURNITURE
public static final ShippingPackageCodeType CARS
public static final ShippingPackageCodeType MOTORBIKES
public static final ShippingPackageCodeType CARAVAN
public static final ShippingPackageCodeType INDUSTRY_VEHICLES
public static final ShippingPackageCodeType PARCEL_OR_PADDED_ENVELOPE
public static final ShippingPackageCodeType SMALL_CANADA_POST_BOX
public static final ShippingPackageCodeType MEDIUM_CANADA_POST_BOX
public static final ShippingPackageCodeType LARGE_CANADA_POST_BOX
public static final ShippingPackageCodeType SMALL_CANADA_POST_BUBBLE_MAILER
public static final ShippingPackageCodeType MEDIUM_CANADA_POST_BUBBLE_MAILER
public static final ShippingPackageCodeType LARGE_CANADA_POST_BUBBLE_MAILER
public static final ShippingPackageCodeType PADDED_BAGS
public static final ShippingPackageCodeType TOUGH_BAGS
public static final ShippingPackageCodeType EXPANDABLE_TOUGH_BAGS
public static final ShippingPackageCodeType MAILING_BOXES
public static final ShippingPackageCodeType WINEPAK
public static final ShippingPackageCodeType CUSTOM_CODE
Method Detail |
---|
public static ShippingPackageCodeType[] values()
for (ShippingPackageCodeType c : ShippingPackageCodeType.values()) System.out.println(c);
public static ShippingPackageCodeType 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 ShippingPackageCodeType 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.