| 7908 |
manish.sha |
1 |
/**
|
|
|
2 |
* ArrivalLocationType.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.track.stub;
|
|
|
9 |
|
|
|
10 |
public class ArrivalLocationType 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 ArrivalLocationType(java.lang.String value) {
|
|
|
16 |
_value_ = value;
|
|
|
17 |
_table_.put(_value_,this);
|
|
|
18 |
}
|
|
|
19 |
|
|
|
20 |
public static final java.lang.String _AIRPORT = "AIRPORT";
|
|
|
21 |
public static final java.lang.String _CUSTOMER = "CUSTOMER";
|
|
|
22 |
public static final java.lang.String _CUSTOMS_BROKER = "CUSTOMS_BROKER";
|
|
|
23 |
public static final java.lang.String _DELIVERY_LOCATION = "DELIVERY_LOCATION";
|
|
|
24 |
public static final java.lang.String _DESTINATION_AIRPORT = "DESTINATION_AIRPORT";
|
|
|
25 |
public static final java.lang.String _DESTINATION_FEDEX_FACILITY = "DESTINATION_FEDEX_FACILITY";
|
|
|
26 |
public static final java.lang.String _DROP_BOX = "DROP_BOX";
|
|
|
27 |
public static final java.lang.String _ENROUTE = "ENROUTE";
|
|
|
28 |
public static final java.lang.String _FEDEX_FACILITY = "FEDEX_FACILITY";
|
|
|
29 |
public static final java.lang.String _FEDEX_OFFICE_LOCATION = "FEDEX_OFFICE_LOCATION";
|
|
|
30 |
public static final java.lang.String _INTERLINE_CARRIER = "INTERLINE_CARRIER";
|
|
|
31 |
public static final java.lang.String _NON_FEDEX_FACILITY = "NON_FEDEX_FACILITY";
|
|
|
32 |
public static final java.lang.String _ORIGIN_AIRPORT = "ORIGIN_AIRPORT";
|
|
|
33 |
public static final java.lang.String _ORIGIN_FEDEX_FACILITY = "ORIGIN_FEDEX_FACILITY";
|
|
|
34 |
public static final java.lang.String _PICKUP_LOCATION = "PICKUP_LOCATION";
|
|
|
35 |
public static final java.lang.String _PLANE = "PLANE";
|
|
|
36 |
public static final java.lang.String _PORT_OF_ENTRY = "PORT_OF_ENTRY";
|
|
|
37 |
public static final java.lang.String _SORT_FACILITY = "SORT_FACILITY";
|
|
|
38 |
public static final java.lang.String _TURNPOINT = "TURNPOINT";
|
|
|
39 |
public static final java.lang.String _VEHICLE = "VEHICLE";
|
|
|
40 |
public static final ArrivalLocationType AIRPORT = new ArrivalLocationType(_AIRPORT);
|
|
|
41 |
public static final ArrivalLocationType CUSTOMER = new ArrivalLocationType(_CUSTOMER);
|
|
|
42 |
public static final ArrivalLocationType CUSTOMS_BROKER = new ArrivalLocationType(_CUSTOMS_BROKER);
|
|
|
43 |
public static final ArrivalLocationType DELIVERY_LOCATION = new ArrivalLocationType(_DELIVERY_LOCATION);
|
|
|
44 |
public static final ArrivalLocationType DESTINATION_AIRPORT = new ArrivalLocationType(_DESTINATION_AIRPORT);
|
|
|
45 |
public static final ArrivalLocationType DESTINATION_FEDEX_FACILITY = new ArrivalLocationType(_DESTINATION_FEDEX_FACILITY);
|
|
|
46 |
public static final ArrivalLocationType DROP_BOX = new ArrivalLocationType(_DROP_BOX);
|
|
|
47 |
public static final ArrivalLocationType ENROUTE = new ArrivalLocationType(_ENROUTE);
|
|
|
48 |
public static final ArrivalLocationType FEDEX_FACILITY = new ArrivalLocationType(_FEDEX_FACILITY);
|
|
|
49 |
public static final ArrivalLocationType FEDEX_OFFICE_LOCATION = new ArrivalLocationType(_FEDEX_OFFICE_LOCATION);
|
|
|
50 |
public static final ArrivalLocationType INTERLINE_CARRIER = new ArrivalLocationType(_INTERLINE_CARRIER);
|
|
|
51 |
public static final ArrivalLocationType NON_FEDEX_FACILITY = new ArrivalLocationType(_NON_FEDEX_FACILITY);
|
|
|
52 |
public static final ArrivalLocationType ORIGIN_AIRPORT = new ArrivalLocationType(_ORIGIN_AIRPORT);
|
|
|
53 |
public static final ArrivalLocationType ORIGIN_FEDEX_FACILITY = new ArrivalLocationType(_ORIGIN_FEDEX_FACILITY);
|
|
|
54 |
public static final ArrivalLocationType PICKUP_LOCATION = new ArrivalLocationType(_PICKUP_LOCATION);
|
|
|
55 |
public static final ArrivalLocationType PLANE = new ArrivalLocationType(_PLANE);
|
|
|
56 |
public static final ArrivalLocationType PORT_OF_ENTRY = new ArrivalLocationType(_PORT_OF_ENTRY);
|
|
|
57 |
public static final ArrivalLocationType SORT_FACILITY = new ArrivalLocationType(_SORT_FACILITY);
|
|
|
58 |
public static final ArrivalLocationType TURNPOINT = new ArrivalLocationType(_TURNPOINT);
|
|
|
59 |
public static final ArrivalLocationType VEHICLE = new ArrivalLocationType(_VEHICLE);
|
|
|
60 |
public java.lang.String getValue() { return _value_;}
|
|
|
61 |
public static ArrivalLocationType fromValue(java.lang.String value)
|
|
|
62 |
throws java.lang.IllegalArgumentException {
|
|
|
63 |
ArrivalLocationType enumeration = (ArrivalLocationType)
|
|
|
64 |
_table_.get(value);
|
|
|
65 |
if (enumeration==null) throw new java.lang.IllegalArgumentException();
|
|
|
66 |
return enumeration;
|
|
|
67 |
}
|
|
|
68 |
public static ArrivalLocationType fromString(java.lang.String value)
|
|
|
69 |
throws java.lang.IllegalArgumentException {
|
|
|
70 |
return fromValue(value);
|
|
|
71 |
}
|
|
|
72 |
public boolean equals(java.lang.Object obj) {return (obj == this);}
|
|
|
73 |
public int hashCode() { return toString().hashCode();}
|
|
|
74 |
public java.lang.String toString() { return _value_;}
|
|
|
75 |
public java.lang.Object readResolve() throws java.io.ObjectStreamException { return fromValue(_value_);}
|
|
|
76 |
public static org.apache.axis.encoding.Serializer getSerializer(
|
|
|
77 |
java.lang.String mechType,
|
|
|
78 |
java.lang.Class _javaType,
|
|
|
79 |
javax.xml.namespace.QName _xmlType) {
|
|
|
80 |
return
|
|
|
81 |
new org.apache.axis.encoding.ser.EnumSerializer(
|
|
|
82 |
_javaType, _xmlType);
|
|
|
83 |
}
|
|
|
84 |
public static org.apache.axis.encoding.Deserializer getDeserializer(
|
|
|
85 |
java.lang.String mechType,
|
|
|
86 |
java.lang.Class _javaType,
|
|
|
87 |
javax.xml.namespace.QName _xmlType) {
|
|
|
88 |
return
|
|
|
89 |
new org.apache.axis.encoding.ser.EnumDeserializer(
|
|
|
90 |
_javaType, _xmlType);
|
|
|
91 |
}
|
|
|
92 |
// Type metadata
|
|
|
93 |
private static org.apache.axis.description.TypeDesc typeDesc =
|
|
|
94 |
new org.apache.axis.description.TypeDesc(ArrivalLocationType.class);
|
|
|
95 |
|
|
|
96 |
static {
|
|
|
97 |
typeDesc.setXmlType(new javax.xml.namespace.QName("http://fedex.com/ws/track/v6", "ArrivalLocationType"));
|
|
|
98 |
}
|
|
|
99 |
/**
|
|
|
100 |
* Return type metadata object
|
|
|
101 |
*/
|
|
|
102 |
public static org.apache.axis.description.TypeDesc getTypeDesc() {
|
|
|
103 |
return typeDesc;
|
|
|
104 |
}
|
|
|
105 |
|
|
|
106 |
}
|