Subversion Repositories SmartDukaan

Rev

Blame | Last modification | View Log | RSS feed

/**
 * CodCollectionType.java
 *
 * This file was auto-generated from WSDL
 * by the Apache Axis 1.4 Apr 22, 2006 (06:55:48 PDT) WSDL2Java emitter.
 */

package com.fedex.ship.stub;

public class CodCollectionType implements java.io.Serializable {
    private java.lang.String _value_;
    private static java.util.HashMap _table_ = new java.util.HashMap();

    // Constructor
    protected CodCollectionType(java.lang.String value) {
        _value_ = value;
        _table_.put(_value_,this);
    }

    public static final java.lang.String _ANY = "ANY";
    public static final java.lang.String _CASH = "CASH";
    public static final java.lang.String _COMPANY_CHECK = "COMPANY_CHECK";
    public static final java.lang.String _GUARANTEED_FUNDS = "GUARANTEED_FUNDS";
    public static final java.lang.String _PERSONAL_CHECK = "PERSONAL_CHECK";
    public static final CodCollectionType ANY = new CodCollectionType(_ANY);
    public static final CodCollectionType CASH = new CodCollectionType(_CASH);
    public static final CodCollectionType COMPANY_CHECK = new CodCollectionType(_COMPANY_CHECK);
    public static final CodCollectionType GUARANTEED_FUNDS = new CodCollectionType(_GUARANTEED_FUNDS);
    public static final CodCollectionType PERSONAL_CHECK = new CodCollectionType(_PERSONAL_CHECK);
    public java.lang.String getValue() { return _value_;}
    public static CodCollectionType fromValue(java.lang.String value)
          throws java.lang.IllegalArgumentException {
        CodCollectionType enumeration = (CodCollectionType)
            _table_.get(value);
        if (enumeration==null) throw new java.lang.IllegalArgumentException();
        return enumeration;
    }
    public static CodCollectionType fromString(java.lang.String value)
          throws java.lang.IllegalArgumentException {
        return fromValue(value);
    }
    public boolean equals(java.lang.Object obj) {return (obj == this);}
    public int hashCode() { return toString().hashCode();}
    public java.lang.String toString() { return _value_;}
    public java.lang.Object readResolve() throws java.io.ObjectStreamException { return fromValue(_value_);}
    public static org.apache.axis.encoding.Serializer getSerializer(
           java.lang.String mechType, 
           java.lang.Class _javaType,  
           javax.xml.namespace.QName _xmlType) {
        return 
          new org.apache.axis.encoding.ser.EnumSerializer(
            _javaType, _xmlType);
    }
    public static org.apache.axis.encoding.Deserializer getDeserializer(
           java.lang.String mechType, 
           java.lang.Class _javaType,  
           javax.xml.namespace.QName _xmlType) {
        return 
          new org.apache.axis.encoding.ser.EnumDeserializer(
            _javaType, _xmlType);
    }
    // Type metadata
    private static org.apache.axis.description.TypeDesc typeDesc =
        new org.apache.axis.description.TypeDesc(CodCollectionType.class);

    static {
        typeDesc.setXmlType(new javax.xml.namespace.QName("http://fedex.com/ws/ship/v12", "CodCollectionType"));
    }
    /**
     * Return type metadata object
     */
    public static org.apache.axis.description.TypeDesc getTypeDesc() {
        return typeDesc;
    }

}