public final enum

UnitCodeType

extends Enum<E extends Enum<E>>
java.lang.Object
   ↳ java.lang.Enum<E extends java.lang.Enum<E>>
     ↳ ebay.apis.eblbasecomponents.UnitCodeType

Class Overview

Java class for UnitCodeType.

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

 <simpleType name="UnitCodeType">
   <restriction base="{http://www.w3.org/2001/XMLSchema}token">
     <enumeration value="kg"/>
     <enumeration value="lbs"/>
     <enumeration value="oz"/>
     <enumeration value="cm"/>
     <enumeration value="inches"/>
     <enumeration value="ft"/>
     <enumeration value="CustomCode"/>
   </restriction>
 </simpleType>
 

Summary

Enum Values
UnitCodeType  CM  Centimeter. 
UnitCodeType  CUSTOM_CODE  Reserved for internal or future use. 
UnitCodeType  FT  Feet. 
UnitCodeType  INCHES  Inches. 
UnitCodeType  KG  Kilogram. 
UnitCodeType  LBS  Pounds. 
UnitCodeType  OZ  Ounces  
Fields
private final String value
[Expand]
Inherited Fields
From class java.lang.Enum
Public Methods
static UnitCodeType fromValue(String v)
String value()
static UnitCodeType valueOf(String name)
final static UnitCodeType[] values()
[Expand]
Inherited Methods
From class java.lang.Enum
From class java.lang.Object
From interface java.lang.Comparable

Enum Values

public static final UnitCodeType CM

Centimeter.

public static final UnitCodeType CUSTOM_CODE

Reserved for internal or future use.

public static final UnitCodeType FT

Feet.

public static final UnitCodeType INCHES

Inches.

public static final UnitCodeType KG

Kilogram.

public static final UnitCodeType LBS

Pounds.

public static final UnitCodeType OZ

Ounces

Fields

private final String value

Public Methods

public static UnitCodeType fromValue (String v)

Parameters
v

public String value ()

public static UnitCodeType valueOf (String name)

Parameters
name

public static final UnitCodeType[] values ()