December 2003
Intermediate to advanced
506 pages
12h 26m
English
xsd:short — 32-bit signed integers
<xsd:simpleType name="short” id="short"> <xsd:restriction base="xsd:int"> <xsd:minInclusive value="-32768"/> <xsd:maxInclusive value="32767"/> </xsd:restriction> </xsd:simpleType>
xsd:int
xsd:decimal
xsd:byte
enumeration, fractionDigits,
maxExclusive, maxInclusive,
minExclusive, minInclusive,
pattern, totalDigits
The value space of xsd:short is the set of common
short integers (16 bits)—the integers between -32768 and 32767.
Its lexical space allows any number of insignificant leading zeros.
The decimal point (even when followed only by insignificant zeros) is forbidden.
Valid values include -32768, 0,
-0000000000000000000005, and
32767.
Invalid values include 32768 and
1..
Read now
Unlock full access