Blame | Last modification | View Log | RSS feed
/*** EMailNotificationRecipientType.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.track.stub;public class EMailNotificationRecipientType implements java.io.Serializable {private java.lang.String _value_;private static java.util.HashMap _table_ = new java.util.HashMap();// Constructorprotected EMailNotificationRecipientType(java.lang.String value) {_value_ = value;_table_.put(_value_,this);}public static final java.lang.String _BROKER = "BROKER";public static final java.lang.String _OTHER = "OTHER";public static final java.lang.String _RECIPIENT = "RECIPIENT";public static final java.lang.String _SHIPPER = "SHIPPER";public static final EMailNotificationRecipientType BROKER = new EMailNotificationRecipientType(_BROKER);public static final EMailNotificationRecipientType OTHER = new EMailNotificationRecipientType(_OTHER);public static final EMailNotificationRecipientType RECIPIENT = new EMailNotificationRecipientType(_RECIPIENT);public static final EMailNotificationRecipientType SHIPPER = new EMailNotificationRecipientType(_SHIPPER);public java.lang.String getValue() { return _value_;}public static EMailNotificationRecipientType fromValue(java.lang.String value)throws java.lang.IllegalArgumentException {EMailNotificationRecipientType enumeration = (EMailNotificationRecipientType)_table_.get(value);if (enumeration==null) throw new java.lang.IllegalArgumentException();return enumeration;}public static EMailNotificationRecipientType 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) {returnnew 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) {returnnew org.apache.axis.encoding.ser.EnumDeserializer(_javaType, _xmlType);}// Type metadataprivate static org.apache.axis.description.TypeDesc typeDesc =new org.apache.axis.description.TypeDesc(EMailNotificationRecipientType.class);static {typeDesc.setXmlType(new javax.xml.namespace.QName("http://fedex.com/ws/track/v6", "EMailNotificationRecipientType"));}/*** Return type metadata object*/public static org.apache.axis.description.TypeDesc getTypeDesc() {return typeDesc;}}