Yes, it should be based on the same technique that achieves type safe enumerations (e.g. integer values).
This link should help.
In your case, it should look as this:
<xs:simpleType name="Component" xmlns:jaxb="http://java.sun.com/xml/ns/jaxb">
<xs:restriction base="xs:string">
<xs:enumeration value="Common">
<xs:annotation>
<xs:appinfo>
<jaxb:typesafeEnumMember name="common" />
</xs:appinfo>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
And you get this:
@XmlType(name = "Component")
@XmlEnum
public enum Component {
@XmlEnumValue("Common")
common("Common");
private final String value;
Component(String v) {
value = v;
}
public String value() {
return value;
}
public static Component fromValue(String v) {
for (Component c: Component.values()) {
if (c.value.equals(v)) {
return c;
}
}
throw new IllegalArgumentException(v);
}
}