by Eric van der Vlist is published by O'Reilly & Associates (ISBN: 0596004214)


Name

xsd:unsignedInt — Unsigned integer of 32 bits

Synopsis

<xsd:simpleType name="unsignedInt" id="unsignedInt">
 <xsd:restriction base="xsd:unsignedLong">
 <xsd:maxInclusive value="4294967295"/>
 </xsd:restriction>
</xsd:simpleType>

Derived from

xsd:unsignedLong

Primary

xsd:decimal

Known subtypes

xsd:unsignedShort

Data parameters (facets)

enumeration, fractionDigits, maxExclusive, maxInclusive, minExclusive, minInclusive, pattern, totalDigits

Description

The value space of xsd:unsignedInt is the range of integers between 0 and 4294967295—the unsigned values that can fit in a word of 32 bits. Its lexical space allows an optional + sign and leading zeros before the significant digits.

Restrictions

The decimal point (even when followed only by insignificant zeros) is forbidden.

Example

Valid values include 4294967295, 0, +0000000000000000000005, and 1.

Invalid values include -1 and 1..


This text is released under the Free Software Foundation GFDL.