RELAX NG by Eric van der Vlist will be published by O'Reilly & Associates (ISBN: 0596004214)
You are welcome to use our annotation system to give your feedback.
xsd:integer — Signed integers of arbitrary length.
xsd:decimal
xsd:decimal
xsd:nonPositiveInteger, xsd:long, xsd:nonNegativeInteger
enumeration, fractionDigits, maxExclusive, maxInclusive, minExclusive, minInclusive, pattern, totalDigits.
<xsd:simpleType name="integer" id="integer"> <xsd:restriction base="xsd:decimal"> <xsd:fractionDigits value="0" fixed="true"/> </xsd:restriction> </xsd:simpleType> |
The value space of xsd:integer includes the set of all the signed integers, with no restriction on range. Its lexical space allows any number of insignificant leading zeros.
The decimal point (even when followed only by insignificant zeros) is forbidden.
-0 and +0 are considered equal, which is different from the behavior of xsd:float and xsd:double.
Valid values for xsd:integer include "-123456789012345678901234567890", "2147483647", "0", or "-0000000000000000000005".
Invalid values include "1.", "2.6", and "A".
You are welcome to use our annotation system to give your feedback.
[Annotations for this page]
All text is copyright Eric van der Vlist, Dyomedea. During development, I give permission for non-commercial copying for educational and review purposes. After publication, all text will be released under the Free Software Foundation GFDL.