2package eu.gls_group.fpcs.v1.common;
4import javax.xml.bind.annotation.XmlEnum;
5import javax.xml.bind.annotation.XmlEnumValue;
6import javax.xml.bind.annotation.XmlType;
23@XmlType(name =
"CarrierType")
27 @XmlEnumValue(
"service_t24")
28 SERVICE_T_24("service_t24"),
29 @XmlEnumValue("service_t48")
30 SERVICE_T_48("service_t48");
31 private final String value;
43 if (c.value.equals(v)) {
47 throw new IllegalArgumentException(v);
static CarrierType fromValue(String v)