Categories:
Audio (13)
Biotech (29)
Bytecode (36)
Database (77)
Framework (7)
Game (7)
General (507)
Graphics (53)
I/O (35)
IDE (2)
JAR Tools (101)
JavaBeans (21)
JDBC (121)
JDK (426)
JSP (20)
Logging (108)
Mail (58)
Messaging (8)
Network (84)
PDF (97)
Report (7)
Scripting (84)
Security (32)
Server (121)
Servlet (26)
SOAP (24)
Testing (54)
Web (15)
XML (309)
Collections:
Other Resources:
Java Source Code for Xerces Java 2.11.2
Where Can I see Java Source Code files for Xerces Java 2.11.2?
✍: FYIcenter
Here are Java Source Code files for Xerces Java 2.11.2:
⏎ org/apache/xerces/xs/datatypes/XSDateTime.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.apache.xerces.xs.datatypes; import javax.xml.datatype.Duration; import javax.xml.datatype.XMLGregorianCalendar; /** * <p>Interface to expose the values for all date-time related types. The following * table shows the methods defined for various XML Schema 1.0 built-in types. 'X' * marks whether a particular method is defined for a particular type. Accessing undefined * methods may return unexpected values. * * <table border="1"> * <br/> * <tr> * <td> XML Schema Datatype </td> * <td> getYears() </td> * <td> getMonths() </td> * <td> getDays() </td> * <td> getHours() </td> * <td> getMinutes() </td> * <td> getSeconds() </td> * <td> getTimeZoneHours() </td> * <td> getTimeZoneMinutes() </td> * <td> getXMLGregorianCalendar() </td> * <td> getDuration() </td> * <td> hasTimeZone() </td> * <td> normalize() </td> * <td> isNormalized() </td> * <td> getLexicalValue() </td> * </tr> * <tr> * <td> gYear </td> * <td>X</td> * <td>-</td> * <td>-</td> * <td>-</td> * <td>-</td> * <td>-</td> * <td>X</td> * <td>X</td> * <td>X</td> * <td>-</td> * <td>X</td> * <td>X</td> * <td>X</td> * <td>X</td> * </tr> * <tr> * <td> gMonth </td> * <td>-</td> * <td>X</td> * <td>-</td> * <td>-</td> * <td>-</td> * <td>-</td> * <td>X</td> * <td>X</td> * <td>X</td> * <td>-</td> * <td>X</td> * <td>X</td> * <td>X</td> * <td>X</td> * </tr> * <tr> * <td> gDay </td> * <td>-</td> * <td>-</td> * <td>X</td> * <td>-</td> * <td>-</td> * <td>-</td> * <td>X</td> * <td>X</td> * <td>X</td> * <td>-</td> * <td>X</td> * <td>X</td> * <td>X</td> * <td>X</td> * </tr> * <tr> * <td> gYearMonth </td> * <td>X</td> * <td>X</td> * <td>-</td> * <td>-</td> * <td>-</td> * <td>-</td> * <td>X</td> * <td>X</td> * <td>X</td> * <td>-</td> * <td>X</td> * <td>X</td> * <td>X</td> * <td>X</td> * </tr> * <tr> * <td> gMonthDay </td> * <td>-</td> * <td>X</td> * <td>X</td> * <td>-</td> * <td>-</td> * <td>-</td> * <td>X</td> * <td>X</td> * <td>X</td> * <td>-</td> * <td>X</td> * <td>X</td> * <td>X</td> * <td>X</td> * </tr> * <tr> * <td> date </td> * <td>X</td> * <td>X</td> * <td>X</td> * <td>-</td> * <td>-</td> * <td>-</td> * <td>X</td> * <td>X</td> * <td>X</td> * <td>-</td> * <td>X</td> * <td>X</td> * <td>X</td> * <td>X</td> * </tr> * <tr> * <td> time </td> * <td>-</td> * <td>-</td> * <td>-</td> * <td>X</td> * <td>X</td> * <td>X</td> * <td>X</td> * <td>X</td> * <td>X</td> * <td>-</td> * <td>X</td> * <td>X</td> * <td>X</td> * <td>X</td> * </tr> * <tr> * <td> datetime </td> * <td>X</td> * <td>X</td> * <td>X</td> * <td>X</td> * <td>X</td> * <td>X</td> * <td>X</td> * <td>X</td> * <td>X</td> * <td>-</td> * <td>X</td> * <td>X</td> * <td>X</td> * <td>X</td> * </tr> * <tr> * <td> duration </td> * <td>-</td> * <td>X</td> * <td>-</td> * <td>-</td> * <td>-</td> * <td>X</td> * <td>-</td> * <td>-</td> * <td>-</td> * <td>X</td> * <td>-</td> * <td>-</td> * <td>-</td> * <td>X</td> * </tr> * </table> * </p> * * @author Ankit Pasricha, IBM * * @version $Id: XSDateTime.java 447250 2006-09-18 05:27:17Z mrglavas $ */ public interface XSDateTime { /** * @return years - can be negative for date-time related types; * */ public int getYears(); /** * @return months - can be negative only for duration types; * For duration types, it returns years*12 + months */ public int getMonths(); /** * @return days - cannot be negative; * */ public int getDays(); /** * @return hours - cannot be negative; * */ public int getHours(); /** * @return minutes - cannot be negative; * */ public int getMinutes(); /** * @return seconds - can be negative only for durations; * For duration types, it returns days*24*3600 + hours*3600 * + minutes*60 + seconds */ public double getSeconds(); /** * @return boolean (true when timezone is specified in the original lexical value) * */ public boolean hasTimeZone(); /** * @return timezone hours (for GMT-xx:xx this will be negative), * */ public int getTimeZoneHours(); /** * @return timezone minutes (for GMT-xx:xx this will be negative), * */ public int getTimeZoneMinutes(); /** * @return the original lexical value */ public String getLexicalValue(); /** * @return a new date-time related object with normalized values * (has no effect on objects already * normalized) */ public XSDateTime normalize(); /** * @return whether a date-time related object is normalized or not * (value is not useful for types where timezone is not specified) */ public boolean isNormalized(); /** * @return an un-normalized XMLGregorianCalendar (if applicable otherwise null) */ public XMLGregorianCalendar getXMLGregorianCalendar(); /** * @return a Duration (if applicable otherwise null) */ public Duration getDuration(); }
⏎ org/apache/xerces/xs/datatypes/XSDateTime.java
Or download all of them as a single archive file:
File name: Xerces-J.2.12.2-src.zip File size: 2128351 bytes Release date: 2022-01-21 Download
⇒ Donwload Xerces-J-bin.2.11.0.zip
⇐ What Is in Xerces-J-bin.2.12.2.zip
2016-09-15, 23935👍, 1💬
Popular Posts:
How to perform XML Schema validation with sax\Writer.java provided in the Apache Xerces package? You...
How to download and install ojdbc7.jar for Oracle 12c R1? ojdbc8.jar for Oracle 12c R1 is a Java 7 a...
maven-model-builder-3.8. 6.jaris the JAR file for Apache Maven 3.8.6 Model Builder module. Apache Ma...
JRE 8 plugin.jar is the JAR file for JRE 8 Java Control Panel Plugin interface and tools. JRE (Java ...
How to download and install xml-commons External Source Package? The source package contains Java so...