time is in 'military' or universal format. : time « XML Schema « XML Tutorial

Home
XML Tutorial
1.Introduction
2.Namespace
3.XML Schema
4.XPath
5.XSLT stylesheet
XML Tutorial » XML Schema » time 
3.47.2.time is in 'military' or universal format.
File: Schema.xsd

<?xml version="1.0"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
  targetNamespace="http://www.java2s.com" xmlns="http://www.java2s.com"
  elementFormDefault="qualified">

  <xs:element name="bedtime" type="xs:time" />
</xs:schema>


File: Data.xml

<?xml version="1.0"?>
<bedtime xmlns="http://www.java2s.com">20:15-05-05:00</bedtime>

The contents of this bedtime element represents 8:15pm EST.
3.47.time
3.47.1.The time datatype represents a specific time that recurs every day
3.47.2.time is in 'military' or universal format.
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.