GLS ShipIT 4.0.f2
GLS ShipIT - SOAP services
Loading...
Searching...
No Matches
ParcelShopType.java
Go to the documentation of this file.
1
2package eu.glsgroup.fpcs.datatypes.soap.v1.parcelshop;
3
4import javax.xml.bind.annotation.XmlEnum;
5import javax.xml.bind.annotation.XmlType;
6
7
24@XmlType(name = "ParcelShopType")
25@XmlEnum
26public 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}