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