GLS ShipIT  2.8.11
GLS ShipIT - SOAP services
BarcodeType.java
Go to the documentation of this file.
1 
2 package eu.glsgroup.fpcs.datatypes.soap.v1.shipmentprocessing;
3 
4 import javax.xml.bind.annotation.XmlEnum;
5 import javax.xml.bind.annotation.XmlType;
6 
7 
22 @XmlType(name = "BarcodeType")
23 @XmlEnum
24 public enum BarcodeType {
25 
28 
29  public String value() {
30  return name();
31  }
32 
33  public static BarcodeType fromValue(String v) {
34  return valueOf(v);
35  }
36 
37 }