GLS ShipIT  4.0.f3
GLS ShipIT - SOAP services
ParcelShopType.java
Go to the documentation of this file.
1 
2 package eu.glsgroup.fpcs.datatypes.soap.v1.parcelshop;
3 
4 import javax.xml.bind.annotation.XmlEnum;
5 import javax.xml.bind.annotation.XmlType;
6 
7 
24 @XmlType(name = "ParcelShopType")
25 @XmlEnum
26 public enum ParcelShopType {
27 
32 
33  public String value() {
34  return name();
35  }
36 
37  public static ParcelShopType fromValue(String v) {
38  return valueOf(v);
39  }
40 
41 }