GLS ShipIT
GLS ShipIT - SOAP services
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 }
eu.glsgroup.fpcs.datatypes.soap.v1.common.CategoryType
Definition: CategoryType.java:25
eu.glsgroup.fpcs.datatypes.soap.v1.common.CategoryType.BUSINESS
BUSINESS
Definition: CategoryType.java:27
eu.glsgroup.fpcs.datatypes.soap.v1.common.CategoryType.PRIVATE
PRIVATE
Definition: CategoryType.java:28
eu.glsgroup.fpcs.datatypes.soap.v1.common.CategoryType.value
String value()
Definition: CategoryType.java:30
eu.glsgroup.fpcs.datatypes.soap.v1.common.CategoryType.fromValue
static CategoryType fromValue(String v)
Definition: CategoryType.java:34