GLS ShipIT  4.0.f3
GLS ShipIT - REST services
glsgroup/fpcs/datatypes/soap/v1/shipmentprocessing/QRFormat.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 
23 @XmlType(name = "QRFormat")
24 @XmlEnum
25 public enum QRFormat {
26 
27  PDF,
28  ZPL,
29  PNG;
30 
31  public String value() {
32  return name();
33  }
34 
35  public static QRFormat fromValue(String v) {
36  return valueOf(v);
37  }
38 
39 }