I have a simple schema that defines node:
<xs:simpleType name="noYesDeclinedBlankType">
<xs:restriction base="xs:string">
<xs:whiteSpace value="collapse"/>
<xs:enumeration value="no"/>
<xs:enumeration value="yes"/>
<xs:enumeration value="declined"/>
<xs:enumeration value=""/>
</xs:restriction>
</xs:simpleType>
JAXB will not create a class from this. However, if I remove the last
enumeration node, it creates it with no trouble. Is this a bug?