GLS ShipIT  3.3.20
GLS ShipIT - SOAP services
DayOfWeek.java
Go to the documentation of this file.
1 
2 package eu.glsgroup.fpcs.datatypes.soap.v1.common;
3 
4 import javax.xml.bind.annotation.XmlEnum;
5 import javax.xml.bind.annotation.XmlType;
6 
7 
27 @XmlType(name = "DayOfWeek")
28 @XmlEnum
29 public enum DayOfWeek {
30 
31  MON,
32  TUE,
33  WED,
34  THU,
35  FRI,
36  SAT,
37  SUN;
38 
39  public String value() {
40  return name();
41  }
42 
43  public static DayOfWeek fromValue(String v) {
44  return valueOf(v);
45  }
46 
47 }