minInclusive Defines the inclusive lower bound for a datatype with the ordered property : minInclusive « XML Schema « XML Tutorial

Home
XML Tutorial
1.Introduction
2.Namespace
3.XML Schema
4.XPath
5.XSLT stylesheet
XML Tutorial » XML Schema » minInclusive 
3.73.2.minInclusive Defines the inclusive lower bound for a datatype with the ordered property
<xsd:simpleType name="editionType">
  <xsd:restriction base="xsd:nonNegativeInteger">
   <xsd:minInclusive value="1"/>
   <xsd:maxInclusive value="10"/>
  </xsd:restriction>
</xsd:simpleType>
3.73.minInclusive
3.73.1.Cardinality represents the number of occurrences of a specific element within a content model.
3.73.2.minInclusive Defines the inclusive lower bound for a datatype with the ordered property
3.73.3.The xsd:minInclusive facet specifies the highest possible value for an element
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.