我提供了一个XSD,其类型表示如下:
<xs:element name="PhoneNumber">
<xs:simpleType>
<xs:restriction base="xs:nonNegativeInteger">
<xs:pattern value="04[0-9]{8}"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
现在我们使用Apache CXF将其从XSD转换为自动生成的代码,并将其指定为BigInteger。
所以我想知道: