public class DatatypeFactoryImpl
extends javax.xml.datatype.DatatypeFactory
Factory that creates new javax.xml.datatype Objects that map XML to/from Java Objects.
DatatypeFactory.newInstance() is used to create a new DatatypeFactory.
 The following implementation resolution mechanisms are used in the following order:
DatatypeFactory.DATATYPEFACTORY_PROPERTY, "javax.xml.datatype.DatatypeFactory",
      exists, a class with the name of the property's value is instantiated.
      Any Exception thrown during the instantiation process is wrapped as a DatatypeConfigurationException.
    Properties Object.
      The Properties Object  is then queried for the property as documented in the prior step
      and processed as documented in the prior step.
    META-INF/services/java.xml.datatype.DatatypeFactory.
      Any Exception thrown during the instantiation process is wrapped as a DatatypeConfigurationException.
    Class specified by
      DatatypeFactory.DATATYPEFACTORY_IMPLEMENTATION_CLASS, "javax.xml.datatype.DatatypeFactoryImpl".
      Any Exception thrown during the instantiation process is wrapped as a DatatypeConfigurationException.
    | Constructor and Description | 
|---|
| DatatypeFactoryImpl()Public constructor is empty.. | 
| Modifier and Type | Method and Description | 
|---|---|
| javax.xml.datatype.Duration | newDuration(boolean isPositive,
           java.math.BigInteger years,
           java.math.BigInteger months,
           java.math.BigInteger days,
           java.math.BigInteger hours,
           java.math.BigInteger minutes,
           java.math.BigDecimal seconds)Obtain a new instance of a  Durationspecifying theDurationas isPositive, years, months, days, hours, minutes, seconds. | 
| javax.xml.datatype.Duration | newDuration(long durationInMilliseconds)Obtain a new instance of a  Durationspecifying theDurationas milliseconds. | 
| javax.xml.datatype.Duration | newDuration(java.lang.String lexicalRepresentation)Obtain a new instance of a  Durationspecifying theDurationas its string representation, "PnYnMnDTnHnMnS",
 as defined in XML Schema 1.0 section 3.2.6.1. | 
| javax.xml.datatype.XMLGregorianCalendar | newXMLGregorianCalendar()Create a new instance of an  XMLGregorianCalendar. | 
| javax.xml.datatype.XMLGregorianCalendar | newXMLGregorianCalendar(java.math.BigInteger year,
                       int month,
                       int day,
                       int hour,
                       int minute,
                       int second,
                       java.math.BigDecimal fractionalSecond,
                       int timezone)Constructor allowing for complete value spaces allowed by 
 W3C XML Schema 1.0 recommendation for xsd:dateTime and related 
 builtin datatypes. | 
| javax.xml.datatype.XMLGregorianCalendar | newXMLGregorianCalendar(java.util.GregorianCalendar cal)Create an  XMLGregorianCalendarfrom aGregorianCalendar. | 
| javax.xml.datatype.XMLGregorianCalendar | newXMLGregorianCalendar(int year,
                       int month,
                       int day,
                       int hour,
                       int minute,
                       int second,
                       int millisecond,
                       int timezone)Constructor of value spaces that a
  java.util.GregorianCalendarinstance would need to convert to anXMLGregorianCalendarinstance. | 
| javax.xml.datatype.XMLGregorianCalendar | newXMLGregorianCalendar(java.lang.String lexicalRepresentation)Create a new XMLGregorianCalendar by parsing the String as a lexical representation. | 
newDuration, newDurationDayTime, newDurationDayTime, newDurationDayTime, newDurationDayTime, newDurationYearMonth, newDurationYearMonth, newDurationYearMonth, newDurationYearMonth, newInstance, newInstance, newXMLGregorianCalendarDate, newXMLGregorianCalendarTime, newXMLGregorianCalendarTime, newXMLGregorianCalendarTimepublic DatatypeFactoryImpl()
Public constructor is empty..
Use DatatypeFactory.newInstance() to create a DatatypeFactory.
public javax.xml.datatype.Duration newDuration(java.lang.String lexicalRepresentation)
Obtain a new instance of a Duration
 specifying the Duration as its string representation, "PnYnMnDTnHnMnS",
 as defined in XML Schema 1.0 section 3.2.6.1.
XML Schema Part 2: Datatypes, 3.2.6 duration, defines duration as:
duration represents a duration of time. The value space of duration is a six-dimensional space where the coordinates designate the Gregorian year, month, day, hour, minute, and second components defined in Section 5.5.3.2 of [ISO 8601], respectively. These components are ordered in their significance by their order of appearance i.e. as year, month, day, hour, minute, and second.
All six values are set and availabe from the created Duration
The XML Schema specification states that values can be of an arbitrary size.
 Implementations may chose not to or be incapable of supporting arbitrarily large and/or small values.
 An UnsupportedOperationException will be thrown with a message indicating implementation limits
 if implementation capacities are exceeded.
newDuration in class javax.xml.datatype.DatatypeFactorylexicalRepresentation - String representation of a Duration.Duration created from parsing the lexicalRepresentation.java.lang.IllegalArgumentException - If lexicalRepresentation is not a valid representation of a Duration.java.lang.UnsupportedOperationException - If implementation cannot support requested values.java.lang.NullPointerException - if lexicalRepresentation is null.public javax.xml.datatype.Duration newDuration(long durationInMilliseconds)
Obtain a new instance of a Duration
 specifying the Duration as milliseconds.
XML Schema Part 2: Datatypes, 3.2.6 duration, defines duration as:
duration represents a duration of time. The value space of duration is a six-dimensional space where the coordinates designate the Gregorian year, month, day, hour, minute, and second components defined in Section 5.5.3.2 of [ISO 8601], respectively. These components are ordered in their significance by their order of appearance i.e. as year, month, day, hour, minute, and second.
All six values are set by computing their values from the specified milliseconds
 and are availabe using the get methods of  the created Duration.
 The values conform to and are defined by:
XMLGregorianCalendar  Date/Time Datatype Field Mapping Between XML Schema 1.0 and Java RepresentationThe default start instance is defined by GregorianCalendar's use of the start of the epoch: i.e.,
 Calendar.YEAR = 1970,
 Calendar.MONTH = Calendar.JANUARY,
 Calendar.DATE = 1, etc.
 This is important as there are variations in the Gregorian Calendar,
 e.g. leap years have different days in the month = Calendar.FEBRUARY
 so the result of Duration.getMonths() and Duration.getDays() can be influenced.
newDuration in class javax.xml.datatype.DatatypeFactorydurationInMilliseconds - Duration in milliseconds to create.Duration representing durationInMilliseconds.public javax.xml.datatype.Duration newDuration(boolean isPositive,
                                      java.math.BigInteger years,
                                      java.math.BigInteger months,
                                      java.math.BigInteger days,
                                      java.math.BigInteger hours,
                                      java.math.BigInteger minutes,
                                      java.math.BigDecimal seconds)
Obtain a new instance of a Duration
 specifying the Duration as isPositive, years, months, days, hours, minutes, seconds.
The XML Schema specification states that values can be of an arbitrary size.
 Implementations may chose not to or be incapable of supporting arbitrarily large and/or small values.
 An UnsupportedOperationException will be thrown with a message indicating implementation limits
 if implementation capacities are exceeded.
newDuration in class javax.xml.datatype.DatatypeFactoryisPositive - Set to false to create a negative duration. When the length
   of the duration is zero, this parameter will be ignored.years - of this Durationmonths - of this Durationdays - of this Durationhours - of this Durationminutes - of this Durationseconds - of this DurationDuration created from the specified values.java.lang.IllegalArgumentException - If values are not a valid representation of a Duration.java.lang.UnsupportedOperationException - If implementation cannot support requested values.java.lang.NullPointerException - If any values are null.newDuration(boolean isPositive, BigInteger years, BigInteger months, BigInteger days,
   BigInteger hours, BigInteger minutes, BigDecimal seconds)public javax.xml.datatype.XMLGregorianCalendar newXMLGregorianCalendar()
Create a new instance of an XMLGregorianCalendar.
All date/time datatype fields set to DatatypeConstants.FIELD_UNDEFINED or null.
newXMLGregorianCalendar in class javax.xml.datatype.DatatypeFactoryXMLGregorianCalendar with all date/time datatype fields set to
   DatatypeConstants.FIELD_UNDEFINED or null.public javax.xml.datatype.XMLGregorianCalendar newXMLGregorianCalendar(java.lang.String lexicalRepresentation)
Create a new XMLGregorianCalendar by parsing the String as a lexical representation.
Parsing the lexical string representation is defined in XML Schema 1.0 Part 2, Section 3.2.[7-14].1, Lexical Representation.
The string representation may not have any leading and trailing whitespaces.
The parsing is done field by field so that the following holds for any lexically correct String x:
newXMLGregorianCalendar(x).toXMLFormat().equals(x)
Except for the noted lexical/canonical representation mismatches listed in XML Schema 1.0 errata, Section 3.2.7.2.
newXMLGregorianCalendar in class javax.xml.datatype.DatatypeFactorylexicalRepresentation - Lexical representation of one the eight XML Schema date/time datatypes.XMLGregorianCalendar created from the lexicalRepresentation.java.lang.IllegalArgumentException - If the lexicalRepresentation is not a valid XMLGregorianCalendar.java.lang.NullPointerException - If lexicalRepresentation is null.public javax.xml.datatype.XMLGregorianCalendar newXMLGregorianCalendar(java.util.GregorianCalendar cal)
Create an XMLGregorianCalendar from a GregorianCalendar.
| Field by Field Conversion from GregorianCalendarto anXMLGregorianCalendar | |
|---|---|
| java.util.GregorianCalendarfield | javax.xml.datatype.XMLGregorianCalendarfield | 
| ERA == GregorianCalendar.BC ? -YEAR : YEAR | XMLGregorianCalendar.setYear(int year) | 
| MONTH + 1 | XMLGregorianCalendar.setMonth(int month) | 
| DAY_OF_MONTH | XMLGregorianCalendar.setDay(int day) | 
| HOUR_OF_DAY, MINUTE, SECOND, MILLISECOND | XMLGregorianCalendar.setTime(int hour, int minute, int second, BigDecimal fractional) | 
| (ZONE_OFFSET + DST_OFFSET) / (60*1000)(in minutes) | XMLGregorianCalendar.setTimezone(int offset)* | 
*conversion loss of information. It is not possible to represent 
 a java.util.GregorianCalendar daylight savings timezone id in the 
 XML Schema 1.0 date/time datatype representation.
To compute the return value's TimeZone field,
 
this.getTimezone() != FIELD_UNDEFINED,
 create a java.util.TimeZone with a custom timezone id 
 using the this.getTimezone().GregorianCalendar default timezone value 
 for the host is defined as specified by 
 java.util.TimeZone.getDefault().newXMLGregorianCalendar in class javax.xml.datatype.DatatypeFactorycal - java.util.GregorianCalendar used to create XMLGregorianCalendarXMLGregorianCalendar created from java.util.GregorianCalendarjava.lang.NullPointerException - If cal is null.public javax.xml.datatype.XMLGregorianCalendar newXMLGregorianCalendar(int year,
                                                              int month,
                                                              int day,
                                                              int hour,
                                                              int minute,
                                                              int second,
                                                              int millisecond,
                                                              int timezone)
Constructor of value spaces that a
 java.util.GregorianCalendar instance would need to convert to an
 XMLGregorianCalendar instance.
XMLGregorianCalendar eon and 
 fractionalSecond are set to null
A DatatypeConstants.FIELD_UNDEFINED value indicates that field isnot set.
newXMLGregorianCalendar in class javax.xml.datatype.DatatypeFactoryyear - of XMLGregorianCalendar to be created.month - of XMLGregorianCalendar to be created.day - of XMLGregorianCalendar to be created.hour - of XMLGregorianCalendar to be created.minute - of XMLGregorianCalendar to be created.second - of XMLGregorianCalendar to be created.millisecond - of XMLGregorianCalendar to be created.timezone - of XMLGregorianCalendar to be created.XMLGregorianCalendar created from specified values.java.lang.IllegalArgumentException - If any individual parameter's value is outside the maximum value constraint for the field
   as determined by the Date/Time Data Mapping table in XMLGregorianCalendar
   or if the composite values constitute an invalid XMLGregorianCalendar instance
   as determined by XMLGregorianCalendar.isValid().public javax.xml.datatype.XMLGregorianCalendar newXMLGregorianCalendar(java.math.BigInteger year,
                                                              int month,
                                                              int day,
                                                              int hour,
                                                              int minute,
                                                              int second,
                                                              java.math.BigDecimal fractionalSecond,
                                                              int timezone)
Constructor allowing for complete value spaces allowed by 
 W3C XML Schema 1.0 recommendation for xsd:dateTime and related 
 builtin datatypes. Note that year parameter supports
 arbitrarily large numbers and fractionalSecond has infinite 
 precision.
newXMLGregorianCalendar in class javax.xml.datatype.DatatypeFactoryyear - of XMLGregorianCalendar to be created.month - of XMLGregorianCalendar to be created.day - of XMLGregorianCalendar to be created.hour - of XMLGregorianCalendar to be created.minute - of XMLGregorianCalendar to be created.second - of XMLGregorianCalendar to be created.fractionalSecond - of XMLGregorianCalendar to be created.timezone - of XMLGregorianCalendar to be created.XMLGregorianCalendar created from specified values.java.lang.IllegalArgumentException - If any individual parameter's value is outside the maximum value constraint for the field
   as determined by the Date/Time Data Mapping table in XMLGregorianCalendar
   or if the composite values constitute an invalid XMLGregorianCalendar instance
   as determined by XMLGregorianCalendar.isValid().java.lang.NullPointerException - If any parameters are null.Copyright © 1999-2022 The Apache Software Foundation. All Rights Reserved.