Restriction types are declared using the declaration. : restriction « XML Schema « XML Tutorial

XML Tutorial
1. Introduction
2. Namespace
3. XML Schema
4. XPath
5. XSLT stylesheet
Java
XML
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
C# / C Sharp
C# / CSharp Tutorial
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
XML Tutorial » XML Schema » restriction 
3. 67. 2. Restriction types are declared using the declaration.
<restriction base="name of the simpleType you are deriving from"


A derived type declared using the <restriction> declaration is a subset of its base type. 
Facets control all simple types within XML Schemas. 
A facet is a single property or trait of a <simpleType>. 
For example, the built-in numeric type nonNegativeIntegerwas created by deriving from the built-in Integer type and setting the facet minInclusiveto zero. 


There are 12 constraining facets, described in the following table: 

Facet                 
minExclusive          
minInclusive          
maxExclusive          
maxInclusive          
totalDigits           
fractionDigits        
length                
minLength             
maxLength             
enumeration           
whiteSpace            
pattern               


Within a <restriction> declaration, you must specify the type you are restricting using the base attribute. 
The base attribute is a reference to a global <simpleType> definition or built-in XML Schema datatype. 

<attribute name="kind">
  <simpleType>
    <restriction base="string">
      <enumeration value="Home" />
      <enumeration value="Work" />
      <enumeration value="Cell" />
      <enumeration value="Fax" />
    </restriction>
  </simpleType>
</attribute>
3. 67. restriction
3. 67. 1. Deriving Custom Simple Types
3. 67. 2. Restriction types are declared using the declaration.
3. 67. 3. restriction specifies values for zero or more constraining facets
3. 67. 4. Deriving by Restriction
www.java2java.com | Contact Us
Copyright 2010 - 2030 Java Source and Support. All rights reserved.
All other trademarks are property of their respective owners.