Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
7905 manish.sha 1
/**
2
 * LabelStockType.java
3
 *
4
 * This file was auto-generated from WSDL
5
 * by the Apache Axis 1.4 Apr 22, 2006 (06:55:48 PDT) WSDL2Java emitter.
6
 */
7
 
8
package com.fedex.ship.stub;
9
 
10
public class LabelStockType implements java.io.Serializable {
11
    private java.lang.String _value_;
12
    private static java.util.HashMap _table_ = new java.util.HashMap();
13
 
14
    // Constructor
15
    protected LabelStockType(java.lang.String value) {
16
        _value_ = value;
17
        _table_.put(_value_,this);
18
    }
19
 
20
    public static final java.lang.String _value1 = "PAPER_4X6";
21
    public static final java.lang.String _value2 = "PAPER_4X8";
22
    public static final java.lang.String _value3 = "PAPER_4X9";
23
    public static final java.lang.String _value4 = "PAPER_7X4.75";
24
    public static final java.lang.String _value5 = "PAPER_8.5X11_BOTTOM_HALF_LABEL";
25
    public static final java.lang.String _value6 = "PAPER_8.5X11_TOP_HALF_LABEL";
26
    public static final java.lang.String _value7 = "PAPER_LETTER";
27
    public static final java.lang.String _value8 = "STOCK_4X6";
28
    public static final java.lang.String _value9 = "STOCK_4X6.75_LEADING_DOC_TAB";
29
    public static final java.lang.String _value10 = "STOCK_4X6.75_TRAILING_DOC_TAB";
30
    public static final java.lang.String _value11 = "STOCK_4X8";
31
    public static final java.lang.String _value12 = "STOCK_4X9_LEADING_DOC_TAB";
32
    public static final java.lang.String _value13 = "STOCK_4X9_TRAILING_DOC_TAB";
33
    public static final LabelStockType value1 = new LabelStockType(_value1);
34
    public static final LabelStockType value2 = new LabelStockType(_value2);
35
    public static final LabelStockType value3 = new LabelStockType(_value3);
36
    public static final LabelStockType value4 = new LabelStockType(_value4);
37
    public static final LabelStockType value5 = new LabelStockType(_value5);
38
    public static final LabelStockType value6 = new LabelStockType(_value6);
39
    public static final LabelStockType value7 = new LabelStockType(_value7);
40
    public static final LabelStockType value8 = new LabelStockType(_value8);
41
    public static final LabelStockType value9 = new LabelStockType(_value9);
42
    public static final LabelStockType value10 = new LabelStockType(_value10);
43
    public static final LabelStockType value11 = new LabelStockType(_value11);
44
    public static final LabelStockType value12 = new LabelStockType(_value12);
45
    public static final LabelStockType value13 = new LabelStockType(_value13);
46
    public java.lang.String getValue() { return _value_;}
47
    public static LabelStockType fromValue(java.lang.String value)
48
          throws java.lang.IllegalArgumentException {
49
        LabelStockType enumeration = (LabelStockType)
50
            _table_.get(value);
51
        if (enumeration==null) throw new java.lang.IllegalArgumentException();
52
        return enumeration;
53
    }
54
    public static LabelStockType fromString(java.lang.String value)
55
          throws java.lang.IllegalArgumentException {
56
        return fromValue(value);
57
    }
58
    public boolean equals(java.lang.Object obj) {return (obj == this);}
59
    public int hashCode() { return toString().hashCode();}
60
    public java.lang.String toString() { return _value_;}
61
    public java.lang.Object readResolve() throws java.io.ObjectStreamException { return fromValue(_value_);}
62
    public static org.apache.axis.encoding.Serializer getSerializer(
63
           java.lang.String mechType, 
64
           java.lang.Class _javaType,  
65
           javax.xml.namespace.QName _xmlType) {
66
        return 
67
          new org.apache.axis.encoding.ser.EnumSerializer(
68
            _javaType, _xmlType);
69
    }
70
    public static org.apache.axis.encoding.Deserializer getDeserializer(
71
           java.lang.String mechType, 
72
           java.lang.Class _javaType,  
73
           javax.xml.namespace.QName _xmlType) {
74
        return 
75
          new org.apache.axis.encoding.ser.EnumDeserializer(
76
            _javaType, _xmlType);
77
    }
78
    // Type metadata
79
    private static org.apache.axis.description.TypeDesc typeDesc =
80
        new org.apache.axis.description.TypeDesc(LabelStockType.class);
81
 
82
    static {
83
        typeDesc.setXmlType(new javax.xml.namespace.QName("http://fedex.com/ws/ship/v12", "LabelStockType"));
84
    }
85
    /**
86
     * Return type metadata object
87
     */
88
    public static org.apache.axis.description.TypeDesc getTypeDesc() {
89
        return typeDesc;
90
    }
91
 
92
}