I have following schema
<xs:simpleType name="enumType">
<xs:restriction base="xs:string">
<xs:enumeration value="STRING_ONE"/>
<xs:enumeration value="STRING_TWO"/>
</xs:restriction>
</xs:simpleType>
As long as i get a known string, I can swithc and it to my jaxbobject which expects a enumType object. But what if i don't know this string ? is there a way to handle it based on JAXB Schema ? I know based on enum its not possible.
Edit: Trying to make it more clear
Wit the given Schema design, my JAXBObject, which accepts enumType as a parameter, can only have 2 input values i.e. STRING_ONE or STRING_TWO which will be converted to XML as part of marshalling.
The question is, that what if, I want to handle a situation through my schema design that if I can have an object of enumType then good otherwise I can give an XML to JAXBObject instead of enumType and it still parses it.