| 7481 |
vikram.rag |
1 |
//
|
|
|
2 |
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6
|
|
|
3 |
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
|
|
|
4 |
// Any modifications to this file will be lost upon recompilation of the source schema.
|
|
|
5 |
// Generated on: 2013.03.04 at 03:57:00 PM IST
|
|
|
6 |
//
|
|
|
7 |
|
|
|
8 |
|
|
|
9 |
package in.shop2020.feeds.products;
|
|
|
10 |
|
|
|
11 |
import javax.xml.bind.annotation.XmlEnum;
|
|
|
12 |
import javax.xml.bind.annotation.XmlEnumValue;
|
|
|
13 |
import javax.xml.bind.annotation.XmlType;
|
|
|
14 |
|
|
|
15 |
|
|
|
16 |
/**
|
|
|
17 |
* <p>Java class for FulfillReadiness.
|
|
|
18 |
*
|
|
|
19 |
* <p>The following schema fragment specifies the expected content contained within this class.
|
|
|
20 |
* <p>
|
|
|
21 |
* <pre>
|
|
|
22 |
* <simpleType name="FulfillReadiness">
|
|
|
23 |
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
|
|
24 |
* <enumeration value="drop_ship_ready"/>
|
|
|
25 |
* <enumeration value="not_ready"/>
|
|
|
26 |
* <enumeration value="receive_ready"/>
|
|
|
27 |
* <enumeration value="exception_receive_ready"/>
|
|
|
28 |
* <enumeration value="po_ready"/>
|
|
|
29 |
* <enumeration value="unknown"/>
|
|
|
30 |
* </restriction>
|
|
|
31 |
* </simpleType>
|
|
|
32 |
* </pre>
|
|
|
33 |
*
|
|
|
34 |
*/
|
|
|
35 |
@XmlType(name = "FulfillReadiness")
|
|
|
36 |
@XmlEnum
|
|
|
37 |
public enum FulfillReadiness {
|
|
|
38 |
|
|
|
39 |
@XmlEnumValue("drop_ship_ready")
|
|
|
40 |
DROP_SHIP_READY("drop_ship_ready"),
|
|
|
41 |
@XmlEnumValue("not_ready")
|
|
|
42 |
NOT_READY("not_ready"),
|
|
|
43 |
@XmlEnumValue("receive_ready")
|
|
|
44 |
RECEIVE_READY("receive_ready"),
|
|
|
45 |
@XmlEnumValue("exception_receive_ready")
|
|
|
46 |
EXCEPTION_RECEIVE_READY("exception_receive_ready"),
|
|
|
47 |
@XmlEnumValue("po_ready")
|
|
|
48 |
PO_READY("po_ready"),
|
|
|
49 |
@XmlEnumValue("unknown")
|
|
|
50 |
UNKNOWN("unknown");
|
|
|
51 |
private final String value;
|
|
|
52 |
|
|
|
53 |
FulfillReadiness(String v) {
|
|
|
54 |
value = v;
|
|
|
55 |
}
|
|
|
56 |
|
|
|
57 |
public String value() {
|
|
|
58 |
return value;
|
|
|
59 |
}
|
|
|
60 |
|
|
|
61 |
public static FulfillReadiness fromValue(String v) {
|
|
|
62 |
for (FulfillReadiness c: FulfillReadiness.values()) {
|
|
|
63 |
if (c.value.equals(v)) {
|
|
|
64 |
return c;
|
|
|
65 |
}
|
|
|
66 |
}
|
|
|
67 |
throw new IllegalArgumentException(v);
|
|
|
68 |
}
|
|
|
69 |
|
|
|
70 |
}
|