GLS ShipIT
GLS ShipIT - REST services
 All Classes Namespaces Files Functions Variables Enumerator Pages
CategoryType.java
Go to the documentation of this file.
1 
2 package eu.glsgroup.fpcs.datatypes.soap.v1.common;
3 
4 import javax.xml.bind.annotation.XmlEnum;
5 import javax.xml.bind.annotation.XmlType;
6 
7 
23 @XmlType(name = "CategoryType")
24 @XmlEnum
25 public enum CategoryType {
26 
29 
30  public String value() {
31  return name();
32  }
33 
34  public static CategoryType fromValue(String v) {
35  return valueOf(v);
36  }
37 
38 }