| | | 3.53.7.An anonymous simple string datatype for which any one of three literal string patterns (Small, Medium, or Large) are acceptable |
|
|
<?xml version="1.0"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
targetNamespace="http://www.java2s.com" xmlns="http://www.java2s.com"
elementFormDefault="qualified">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:pattern value="Small|Medium|Large" />
</xs:restriction>
</xs:simpleType>
</xs:schema>
|
|
|