⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 datatypefactory.java

📁 gcc的组建
💻 JAVA
字号:
/* DatatypeFactory.java --    Copyright (C) 2004, 2005  Free Software Foundation, Inc.This file is part of GNU Classpath.GNU Classpath is free software; you can redistribute it and/or modifyit under the terms of the GNU General Public License as published bythe Free Software Foundation; either version 2, or (at your option)any later version.GNU Classpath is distributed in the hope that it will be useful, butWITHOUT ANY WARRANTY; without even the implied warranty ofMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNUGeneral Public License for more details.You should have received a copy of the GNU General Public Licensealong with GNU Classpath; see the file COPYING.  If not, write to theFree Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA02110-1301 USA.Linking this library statically or dynamically with other modules ismaking a combined work based on this library.  Thus, the terms andconditions of the GNU General Public License cover the wholecombination.As a special exception, the copyright holders of this library give youpermission to link this library with independent modules to produce anexecutable, regardless of the license terms of these independentmodules, and to copy and distribute the resulting executable underterms of your choice, provided that you also meet, for each linkedindependent module, the terms and conditions of the license of thatmodule.  An independent module is a module which is not derived fromor based on this library.  If you modify this library, you may extendthis exception to your version of the library, but you are notobligated to do so.  If you do not wish to do so, delete thisexception statement from your version. */package javax.xml.datatype;import java.math.BigDecimal;import java.math.BigInteger;import java.util.GregorianCalendar;/** * Factory class to create new datatype objects mapping XML to and from Java * objects. * * @author (a href='mailto:dog@gnu.org'>Chris Burdess</a) * @since 1.3 */public abstract class DatatypeFactory{  /**   * JAXP 1.3 default property name.   */  public static final String DATATYPEFACTORY_PROPERTY = "javax.xml.datatype.DatatypeFactory";  /**   * JAXP 1.3 default implementation class name.   */  public static final java.lang.String DATATYPEFACTORY_IMPLEMENTATION_CLASS = "gnu.xml.datatype.JAXPDatatypeFactory";  protected DatatypeFactory()  {  }  /**   * Returns a new factory instance.   */  public static DatatypeFactory newInstance()    throws DatatypeConfigurationException  {    try      {        Class t = Class.forName(DATATYPEFACTORY_IMPLEMENTATION_CLASS);        return (DatatypeFactory) t.newInstance();      }    catch (Exception e)      {        throw new DatatypeConfigurationException (e);      }  }  /**   * Returns a new duration from its string representation.   * @param lexicalRepresentation the lexical representation of the   * duration, as specified in XML Schema 1.0 section 3.2.6.1.   */  public abstract Duration newDuration(String lexicalRepresentation);  /**   * Returns a new duration.   * @param durationInMilliSeconds the duration in milliseconds   */  public abstract Duration newDuration(long durationInMilliSeconds);  /**   * Returns a new duration by specifying the individual components.   * @param isPositive whether the duration is positive   * @param years the number of years   * @param months the number of months   * @param days the number of days   * @param hours the number of hours   * @param minutes th number of minutes   * @param seconds the number of seconds   */  public abstract Duration newDuration(boolean isPositive,                                       BigInteger years,                                       BigInteger months,                                       BigInteger days,                                       BigInteger hours,                                       BigInteger minutes,                                       BigDecimal seconds);  /**   * Returns a new duration by specifying the individual components.   * @param isPositive whether the duration is positive   * @param years the number of years   * @param months the number of months   * @param days the number of days   * @param hours the number of hours   * @param minutes th number of minutes   * @param seconds the number of seconds   */  public Duration newDuration(boolean isPositive,                              int years,                              int months,                              int days,                              int hours,                              int minutes,                              int seconds)  {    return newDuration(isPositive,                       BigInteger.valueOf((long) years),                       BigInteger.valueOf((long) months),                       BigInteger.valueOf((long) days),                       BigInteger.valueOf((long) hours),                       BigInteger.valueOf((long) minutes),                       BigDecimal.valueOf((long) seconds));  }  /**   * Returns a new dayTimeDuration from its string representation.   * @param lexicalRepresentation the lexical representation of the   * duration, as specified in XML Schema 1.0 section 3.2.6.1.   */  public Duration newDurationDayTime(String lexicalRepresentation)  {    return newDuration(lexicalRepresentation);  }  /**   * Returns a new dayTimeDuration.   * @param durationInMilliseconds the duration in milliseconds   */  public Duration newDurationDayTime(long durationInMilliseconds)  {    // TODO xmlSchemaType    return newDuration(durationInMilliseconds);  }  /**   * Returns a new dayTimeDuration by specifying the individual components.   * @param isPositive whether the duration is positive   * @param days the number of days   * @param hours the number of hours   * @param minutes th number of minutes   * @param seconds the number of seconds   */  public Duration newDurationDayTime(boolean isPositive,                                     BigInteger days,                                     BigInteger hours,                                     BigInteger minutes,                                     BigDecimal seconds)  {    return newDuration(isPositive,                       null,                       null,                       days,                       hours,                       minutes,                       seconds);  }  /**   * Returns a new dayTimeDuration by specifying the individual components.   * @param isPositive whether the duration is positive   * @param days the number of days   * @param hours the number of hours   * @param minutes th number of minutes   * @param seconds the number of seconds   */  public Duration newDurationDayTime(boolean isPositive,                                     int days,                                     int hours,                                     int minutes,                                     int seconds)  {    return newDuration(isPositive,                       null,                       null,                       BigInteger.valueOf((long) days),                       BigInteger.valueOf((long) hours),                       BigInteger.valueOf((long) minutes),                       BigDecimal.valueOf((long) seconds));  }  /**   * Returns a new yearMonthDuration from its string representation.   * @param lexicalRepresentation the lexical representation of the   * duration, as specified in XML Schema 1.0 section 3.2.6.1.   */  public Duration newDurationYearMonth(String lexicalRepresentation)  {    return newDuration(lexicalRepresentation);  }  /**   * Returns a new yearMonthDuration.   * @param durationInMilliseconds the duration in milliseconds   */  public Duration newDurationYearMonth(long durationInMilliseconds)  {    // TODO xmlSchemaType    return newDuration(durationInMilliseconds);  }  /**   * Returns a new yearMonthDuration by specifying the individual components.   * @param isPositive whether the duration is positive   * @param years the number of years   * @param months the number of months   */  public Duration newDurationYearMonth(boolean isPositive,                                       BigInteger years,                                       BigInteger months)  {    return newDuration(isPositive,                       years,                       months,                       null,                       null,                       null,                       null);  }  /**   * Returns a new yearMonthDuration by specifying the individual components.   * @param isPositive whether the duration is positive   * @param years the number of years   * @param months the number of months   */  public Duration newDurationYearMonth(boolean isPositive,                                       int years,                                       int months)  {    return newDuration(isPositive,                       BigInteger.valueOf((long) years),                       BigInteger.valueOf((long) months),                       null,                       null,                       null,                       null);  }  /**   * Returns a new XMLGregorianCalendar with no fields initialized.   */  public abstract XMLGregorianCalendar newXMLGregorianCalendar();  /**   * Returns a new XMLGregorianCalendar from a string representation.   * @param lexicalRepresentation the lexical representation as specified in   * XML Schema 1.0 Part 2, section 3.2.[7-14].1.   */  public abstract XMLGregorianCalendar newXMLGregorianCalendar(String lexicalRepresentation);    /**   * Returns a new XMLGregorianCalendar based on the specified Gregorian   * calendar.   */  public abstract XMLGregorianCalendar newXMLGregorianCalendar(GregorianCalendar cal);  /**   * Returns a new XMLGregorianCalendar with the specified components.   */  public abstract XMLGregorianCalendar newXMLGregorianCalendar(BigInteger year,                                                               int month,                                                               int day,                                                               int hour,                                                               int minute,                                                               int second,                                                               BigDecimal fractionalSecond,                                                               int timezone);  /**   * Returns a new XMLGregorianCalendar with the specified components.   */  public XMLGregorianCalendar newXMLGregorianCalendar(int year,                                                      int month,                                                      int day,                                                      int hour,                                                      int minute,                                                      int second,                                                      int millisecond,                                                      int timezone)  {    return newXMLGregorianCalendar(BigInteger.valueOf((long) year),                                   month,                                   day,                                   hour,                                   minute,                                   second,                                   new BigDecimal(((double) millisecond) / 1000.0),                                   timezone);  }  /**   * Returns a new XMLGregorianCalendar with the specified components.   */  public XMLGregorianCalendar newXMLGregorianCalendarDate(int year,                                                          int month,                                                          int day,                                                          int timezone)  {    return newXMLGregorianCalendar(BigInteger.valueOf((long) year),                                   month,                                   day,                                   DatatypeConstants.FIELD_UNDEFINED,                                   DatatypeConstants.FIELD_UNDEFINED,                                   DatatypeConstants.FIELD_UNDEFINED,                                   null,                                   timezone);  }  /**   * Returns a new XMLGregorianCalendar with the specified components.   */  public XMLGregorianCalendar newXMLGregorianCalendarTime(int hours,                                                          int minutes,                                                          int seconds,                                                          int timezone)  {    return newXMLGregorianCalendar(null,                                   DatatypeConstants.FIELD_UNDEFINED,                                   DatatypeConstants.FIELD_UNDEFINED,                                   hours,                                   minutes,                                   seconds,                                   null,                                   timezone);  }  /**   * Returns a new XMLGregorianCalendar with the specified components.   */  public XMLGregorianCalendar newXMLGregorianCalendarTime(int hours,                                                          int minutes,                                                          int seconds,                                                          BigDecimal fractionalSecond,                                                          int timezone)  {    return newXMLGregorianCalendar(null,                                   DatatypeConstants.FIELD_UNDEFINED,                                   DatatypeConstants.FIELD_UNDEFINED,                                   hours,                                   minutes,                                   seconds,                                   fractionalSecond,                                   timezone);  }  /**   * Returns a new XMLGregorianCalendar with the specified components.   */  public XMLGregorianCalendar newXMLGregorianCalendarTime(int hours,                                                          int minutes,                                                          int seconds,                                                          int milliseconds,                                                          int timezone)  {    return newXMLGregorianCalendar(null,                                   DatatypeConstants.FIELD_UNDEFINED,                                   DatatypeConstants.FIELD_UNDEFINED,                                   hours,                                   minutes,                                   seconds,                                   new BigDecimal(((double) milliseconds) / 1000.0),                                   timezone);  }    }

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -