GLS ShipIT  4.0.f3
GLS ShipIT - SOAP services
ReturnQR.java
Go to the documentation of this file.
1 
2 package eu.gls_group.fpcs.v1.common;
3 
4 import javax.xml.bind.annotation.XmlEnum;
5 import javax.xml.bind.annotation.XmlType;
6 
7 
23 @XmlType(name = "ReturnQR")
24 @XmlEnum
25 public enum ReturnQR {
26 
27  PDF,
28  PNG,
29  ZPL;
30 
31  public String value() {
32  return name();
33  }
34 
35  public static ReturnQR fromValue(String v) {
36  return valueOf(v);
37  }
38 
39 }
static ReturnQR fromValue(String v)
Definition: ReturnQR.java:35