DatatypeFactory
  public
  
  
  abstract
  class
  DatatypeFactory
  
    extends Object
  
  
  
  
  
  
| java.lang.Object | |
| ↳ | javax.xml.datatype.DatatypeFactory | 
Factory that creates new javax.xml.datatype Objects that map XML to/from Java Objects.
newInstance() is used to create a new DatatypeFactory.
 The following implementation resolution mechanisms are used in the following order:
- 
      If the system property specified by 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 aDatatypeConfigurationException.
- 
      If the file ${JAVA_HOME}/lib/jaxp.properties exists, it is loaded in a PropertiesObject. ThePropertiesObjectis then queried for the property as documented in the prior step and processed as documented in the prior step.
- 
      The services resolution mechanism is used, e.g. META-INF/services/java.xml.datatype.DatatypeFactory. Any Exception thrown during the instantiation process is wrapped as aDatatypeConfigurationException.
- 
      The final mechanism is to attempt to instantiate the Classspecified byDATATYPEFACTORY_IMPLEMENTATION_CLASS, "javax.xml.datatype.DatatypeFactoryImpl". Any Exception thrown during the instantiation process is wrapped as aDatatypeConfigurationException.
Note that you must supply your own implementation (such as Xerces); Android does not ship with a default implementation.
Summary
| Constants | |
|---|---|
| String | DATATYPEFACTORY_PROPERTYDefault property name as defined in JSR 206: Java(TM) API for XML Processing (JAXP) 1.3. | 
| Fields | |
|---|---|
| 
    public
    static
    final
    String | DATATYPEFACTORY_IMPLEMENTATION_CLASSDefault implementation class name as defined in JSR 206: Java(TM) API for XML Processing (JAXP) 1.3. | 
| Protected constructors | |
|---|---|
| 
      DatatypeFactory()
      Protected constructor to prevent instantiation outside of package. | |
| Public methods | |
|---|---|
| 
        abstract
        
        
        
        
        Duration | 
      newDuration(boolean isPositive, BigInteger years, BigInteger months, BigInteger days, BigInteger hours, BigInteger minutes, BigDecimal seconds)
      Obtain a new instance of a  | 
| 
        
        
        
        
        
        Duration | 
      newDuration(boolean isPositive, int years, int months, int days, int hours, int minutes, int seconds)
      Obtain a new instance of a  | 
| 
        abstract
        
        
        
        
        Duration | 
      newDuration(long durationInMilliSeconds)
      Obtain a new instance of a  | 
| 
        abstract
        
        
        
        
        Duration | 
      newDuration(String lexicalRepresentation)
      Obtain a new instance of a  | 
| 
        
        
        
        
        
        Duration | 
      newDurationDayTime(long durationInMilliseconds)
      Create a  | 
| 
        
        
        
        
        
        Duration | 
      newDurationDayTime(boolean isPositive, BigInteger day, BigInteger hour, BigInteger minute, BigInteger second)
      Create a  | 
| 
        
        
        
        
        
        Duration | 
      newDurationDayTime(boolean isPositive, int day, int hour, int minute, int second)
      Create a  | 
| 
        
        
        
        
        
        Duration | 
      newDurationDayTime(String lexicalRepresentation)
      Create a  | 
| 
        
        
        
        
        
        Duration | 
      newDurationYearMonth(String lexicalRepresentation)
      Create a  | 
| 
        
        
        
        
        
        Duration | 
      newDurationYearMonth(boolean isPositive, BigInteger year, BigInteger month)
      Create a  | 
| 
        
        
        
        
        
        Duration | 
      newDurationYearMonth(boolean isPositive, int year, int month)
      Create a  | 
| 
        
        
        
        
        
        Duration | 
      newDurationYearMonth(long durationInMilliseconds)
      Create a  | 
| 
        
        
        static
        
        
        DatatypeFactory | 
      newInstance(String factoryClassName, ClassLoader classLoader)
      Returns an instance of the named implementation of  | 
| 
        
        
        static
        
        
        DatatypeFactory | 
      newInstance()
      Obtain a new instance of a  | 
| 
        abstract
        
        
        
        
        XMLGregorianCalendar | 
      newXMLGregorianCalendar(String lexicalRepresentation)
      Create a new XMLGregorianCalendar by parsing the String as a lexical representation. | 
| 
        abstract
        
        
        
        
        XMLGregorianCalendar | 
      newXMLGregorianCalendar(GregorianCalendar cal)
      Create an  | 
| 
        
        
        
        
        
        XMLGregorianCalendar | 
      newXMLGregorianCalendar(int year, int month, int day, int hour, int minute, int second, int millisecond, int timezone)
      Constructor of value spaces that a
  | 
| 
        abstract
        
        
        
        
        XMLGregorianCalendar | 
      newXMLGregorianCalendar(BigInteger year, int month, int day, int hour, int minute, int second, 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. | 
| 
        abstract
        
        
        
        
        XMLGregorianCalendar | 
      newXMLGregorianCalendar()
      Create a new instance of an  | 
| 
        
        
        
        
        
        XMLGregorianCalendar | 
      newXMLGregorianCalendarDate(int year, int month, int day, int timezone)
      Create a Java representation of XML Schema builtin datatype  | 
| 
        
        
        
        
        
        XMLGregorianCalendar | 
      newXMLGregorianCalendarTime(int hours, int minutes, int seconds, BigDecimal fractionalSecond, int timezone)
      Create a Java instance of XML Schema builtin datatype time. | 
| 
        
        
        
        
        
        XMLGregorianCalendar | 
      newXMLGregorianCalendarTime(int hours, int minutes, int seconds, int milliseconds, int timezone)
      Create a Java instance of XML Schema builtin datatype time. | 
| 
        
        
        
        
        
        XMLGregorianCalendar | 
      newXMLGregorianCalendarTime(int hours, int minutes, int seconds, int timezone)
      Create a Java instance of XML Schema builtin datatype  | 
| Inherited methods | |
|---|---|
Constants
DATATYPEFACTORY_PROPERTY
public static final String DATATYPEFACTORY_PROPERTY
Default property name as defined in JSR 206: Java(TM) API for XML Processing (JAXP) 1.3.
Default value is javax.xml.datatype.DatatypeFactory.
Constant Value: "javax.xml.datatype.DatatypeFactory"
Fields
DATATYPEFACTORY_IMPLEMENTATION_CLASS
public static final String DATATYPEFACTORY_IMPLEMENTATION_CLASS
Default implementation class name as defined in JSR 206: Java(TM) API for XML Processing (JAXP) 1.3.
Default value is org.apache.xerces.jaxp.datatype.DatatypeFactoryImpl.
Protected constructors
DatatypeFactory
protected DatatypeFactory ()
Protected constructor to prevent instantiation outside of package.
Use newInstance() to create a DatatypeFactory.
Public methods
newDuration
public abstract Duration newDuration (boolean isPositive, BigInteger years, BigInteger months, BigInteger days, BigInteger hours, BigInteger minutes, 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.
A null value indicates that field is not set.
| Parameters | |
|---|---|
| isPositive | boolean: Set tofalseto create a negative duration. When the length
   of the duration is zero, this parameter will be ignored. | 
| years | BigInteger: of thisDuration | 
| months | BigInteger: of thisDuration | 
| days | BigInteger: of thisDuration | 
| hours | BigInteger: of thisDuration | 
| minutes | BigInteger: of thisDuration | 
| seconds | BigDecimal: of thisDuration | 
| Returns | |
|---|---|
| Duration | New Durationcreated from the specified values. | 
| Throws | |
|---|---|
| IllegalArgumentException | If values are not a valid representation of a Duration. | 
| UnsupportedOperationException | If implementation cannot support requested values. | 
newDuration
public Duration newDuration (boolean isPositive, int years, int months, int days, int hours, int minutes, int seconds)
Obtain a new instance of a Duration
 specifying the Duration as isPositive, years, months, days, hours, minutes, seconds.
A DatatypeConstants.FIELD_UNDEFINED value indicates that field is not set.
| Parameters | |
|---|---|
| isPositive | boolean: Set tofalseto create a negative duration. When the length
   of the duration is zero, this parameter will be ignored. | 
| years | int: of thisDuration | 
| months | int: of thisDuration | 
| days | int: of thisDuration | 
| hours | int: of thisDuration | 
| minutes | int: of thisDuration | 
| seconds | int: of thisDuration | 
| Returns | |
|---|---|
| Duration | New Durationcreated from the specified values. | 
| Throws | |
|---|---|
| IllegalArgumentException | If values are not a valid representation of a Duration. | 
newDuration
public abstract 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 available using the get methods of  the created Duration.
 The values conform to and are defined by:
- ISO 8601:2000(E) Section 5.5.3.2 Alternative format
- W3C XML Schema 1.0 Part 2, Appendix D, ISO 8601 Date and Time Formats
- XMLGregorianCalendarDate/Time Datatype Field Mapping Between XML Schema 1.0 and Java Representation
The 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.
| Parameters | |
|---|---|
| durationInMilliSeconds | long: Duration in milliseconds to create. | 
| Returns | |
|---|---|
| Duration | New DurationrepresentingdurationInMilliSeconds. | 
newDuration
public abstract Duration newDuration (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 available 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.
| Parameters | |
|---|---|
| lexicalRepresentation | String:Stringrepresentation of aDuration. | 
| Returns | |
|---|---|
| Duration | New Durationcreated from parsing thelexicalRepresentation. | 
| Throws | |
|---|---|
| IllegalArgumentException | If lexicalRepresentationis not a valid representation of aDuration. | 
| UnsupportedOperationException | If implementation cannot support requested values. | 
| NullPointerException | if lexicalRepresentationisnull. | 
newDurationDayTime
public Duration newDurationDayTime (long durationInMilliseconds)
Create a Duration of type xdt:dayTimeDuration using the specified milliseconds as defined in
 
   XQuery 1.0 and XPath 2.0 Data Model, xdt:dayTimeDuration.
The datatype xdt:dayTimeDuration is a subtype of xs:duration
 whose lexical representation contains only day, hour, minute, and second components.
 This datatype resides in the namespace http://www.w3.org/2003/11/xpath-datatypes.
All four values are set by computing their values from the specified milliseconds
 and are available using the get methods of  the created Duration.
 The values conform to and are defined by:
- ISO 8601:2000(E) Section 5.5.3.2 Alternative format
- W3C XML Schema 1.0 Part 2, Appendix D, ISO 8601 Date and Time Formats
- XMLGregorianCalendarDate/Time Datatype Field Mapping Between XML Schema 1.0 and Java Representation
The 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.getDays() can be influenced.
Any remaining milliseconds after determining the day, hour, minute and second are discarded.
| Parameters | |
|---|---|
| durationInMilliseconds | long: Milliseconds ofDurationto create. | 
| Returns | |
|---|---|
| Duration | New Durationcreated with the specifieddurationInMilliseconds. | 
newDurationDayTime
public Duration newDurationDayTime (boolean isPositive, BigInteger day, BigInteger hour, BigInteger minute, BigInteger second)
Create a Duration of type xdt:dayTimeDuration using the specified
 day, hour, minute and second as defined in
 
   XQuery 1.0 and XPath 2.0 Data Model, xdt:dayTimeDuration.
The datatype xdt:dayTimeDuration is a subtype of xs:duration
 whose lexical representation contains only day, hour, minute, and second components.
 This datatype resides in the namespace http://www.w3.org/2003/11/xpath-datatypes.
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.
A null value indicates that field is not set.
| Parameters | |
|---|---|
| isPositive | boolean: Set tofalseto create a negative duration. When the length
   of the duration is zero, this parameter will be ignored. | 
| day | BigInteger: Day ofDuration. | 
| hour | BigInteger: Hour ofDuration. | 
| minute | BigInteger: Minute ofDuration. | 
| second | BigInteger: Second ofDuration. | 
| Returns | |
|---|---|
| Duration | New Durationcreated with the specifiedday,hour,minuteandsecond. | 
| Throws | |
|---|---|
| IllegalArgumentException | If any values would create an invalid Duration. | 
| UnsupportedOperationException | If implementation cannot support requested values. | 
newDurationDayTime
public Duration newDurationDayTime (boolean isPositive, int day, int hour, int minute, int second)
Create a Duration of type xdt:dayTimeDuration using the specified
 day, hour, minute and second as defined in
 
   XQuery 1.0 and XPath 2.0 Data Model, xdt:dayTimeDuration.
The datatype xdt:dayTimeDuration is a subtype of xs:duration
 whose lexical representation contains only day, hour, minute, and second components.
 This datatype resides in the namespace http://www.w3.org/2003/11/xpath-datatypes.
A DatatypeConstants.FIELD_UNDEFINED value indicates that field is not set.
| Parameters | |
|---|---|
| isPositive | boolean: Set tofalseto create a negative duration. When the length
   of the duration is zero, this parameter will be ignored. | 
| day | int: Day ofDuration. | 
| hour | int: Hour ofDuration. | 
| minute | int: Minute ofDuration. | 
| second | int: Second ofDuration. | 
| Returns | |
|---|---|
| Duration | New Durationcreated with the specifiedday,hour,minuteandsecond. | 
| Throws | |
|---|---|
| IllegalArgumentException | If any values would create an invalid Duration. | 
newDurationDayTime
public Duration newDurationDayTime (String lexicalRepresentation)
Create a Duration of type xdt:dayTimeDuration by parsing its String representation,
 "PnDTnHnMnS", 
   XQuery 1.0 and XPath 2.0 Data Model, xdt:dayTimeDuration.
The datatype xdt:dayTimeDuration is a subtype of xs:duration
 whose lexical representation contains only day, hour, minute, and second components.
 This datatype resides in the namespace http://www.w3.org/2003/11/xpath-datatypes.
All four values are set and available 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.
| Parameters | |
|---|---|
| lexicalRepresentation | String: Lexical representation of a duration. | 
| Returns | |
|---|---|
| Duration | New Durationcreated using the specifiedlexicalRepresentation. | 
| Throws | |
|---|---|
| IllegalArgumentException | If the given string does not conform to the aforementioned specification. | 
| UnsupportedOperationException | If implementation cannot support requested values. | 
| NullPointerException | If lexicalRepresentationisnull. | 
newDurationYearMonth
public Duration newDurationYearMonth (String lexicalRepresentation)
Create a Duration of type xdt:yearMonthDuration by parsing its String representation,
 "PnYnM", 
   XQuery 1.0 and XPath 2.0 Data Model, xdt:yearMonthDuration.
The datatype xdt:yearMonthDuration is a subtype of xs:duration
 whose lexical representation contains only year and month components.
 This datatype resides in the namespace XMLConstants.W3C_XPATH_DATATYPE_NS_URI.
Both values are set and available 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.
| Parameters | |
|---|---|
| lexicalRepresentation | String: Lexical representation of a duration. | 
| Returns | |
|---|---|
| Duration | New Durationcreated using the specifiedlexicalRepresentation. | 
| Throws | |
|---|---|
| IllegalArgumentException | If the lexicalRepresentationdoes not conform to the specification. | 
| UnsupportedOperationException | If implementation cannot support requested values. | 
| NullPointerException | If lexicalRepresentationisnull. | 
newDurationYearMonth
public Duration newDurationYearMonth (boolean isPositive, BigInteger year, BigInteger month)
Create a Duration of type xdt:yearMonthDuration using the specified
 year and month as defined in
 
   XQuery 1.0 and XPath 2.0 Data Model, xdt:yearMonthDuration.
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.
A null value indicates that field is not set.
| Parameters | |
|---|---|
| isPositive | boolean: Set tofalseto create a negative duration. When the length
   of the duration is zero, this parameter will be ignored. | 
| year | BigInteger: Year ofDuration. | 
| month | BigInteger: Month ofDuration. | 
| Returns | |
|---|---|
| Duration | New Durationcreated using the specifiedyearandmonth. | 
| Throws | |
|---|---|
| IllegalArgumentException | If any values would create an invalid Duration. | 
| UnsupportedOperationException | If implementation cannot support requested values. | 
newDurationYearMonth
public Duration newDurationYearMonth (boolean isPositive, int year, int month)
Create a Duration of type xdt:yearMonthDuration using the specified
 year and month as defined in
 
   XQuery 1.0 and XPath 2.0 Data Model, xdt:yearMonthDuration.
A DatatypeConstants.FIELD_UNDEFINED value indicates that field is not set.
| Parameters | |
|---|---|
| isPositive | boolean: Set tofalseto create a negative duration. When the length
   of the duration is zero, this parameter will be ignored. | 
| year | int: Year ofDuration. | 
| month | int: Month ofDuration. | 
| Returns | |
|---|---|
| Duration | New Durationcreated using the specifiedyearandmonth. | 
| Throws | |
|---|---|
| IllegalArgumentException | If any values would create an invalid Duration. | 
newDurationYearMonth
public Duration newDurationYearMonth (long durationInMilliseconds)
Create a Duration of type xdt:yearMonthDuration using the specified milliseconds as defined in
 
   XQuery 1.0 and XPath 2.0 Data Model, xdt:yearMonthDuration.
The datatype xdt:yearMonthDuration is a subtype of xs:duration
 whose lexical representation contains only year and month components.
 This datatype resides in the namespace XMLConstants.W3C_XPATH_DATATYPE_NS_URI.
Both values are set by computing their values from the specified milliseconds
 and are available using the get methods of  the created Duration.
 The values conform to and are defined by:
- ISO 8601:2000(E) Section 5.5.3.2 Alternative format
- W3C XML Schema 1.0 Part 2, Appendix D, ISO 8601 Date and Time Formats
- XMLGregorianCalendarDate/Time Datatype Field Mapping Between XML Schema 1.0 and Java Representation
The 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() can be influenced.
Any remaining milliseconds after determining the year and month are discarded.
| Parameters | |
|---|---|
| durationInMilliseconds | long: Milliseconds ofDurationto create. | 
| Returns | |
|---|---|
| Duration | New Durationcreated using the specifieddurationInMilliseconds. | 
newInstance
public static DatatypeFactory newInstance (String factoryClassName, ClassLoader classLoader)
Returns an instance of the named implementation of DatatypeFactory.
| Parameters | |
|---|---|
| factoryClassName | String | 
| classLoader | ClassLoader | 
| Returns | |
|---|---|
| DatatypeFactory | |
| Throws | |
|---|---|
| DatatypeConfigurationException | if factoryClassNameis not available or cannot
     be instantiated. | 
newInstance
public static DatatypeFactory newInstance ()
Obtain a new instance of a DatatypeFactory.
The implementation resolution mechanisms are defined in this
 Class's documentation.
Note that you must supply your own implementation (such as Xerces); Android does not ship with a default implementation.
| Returns | |
|---|---|
| DatatypeFactory | New instance of a DocumentBuilderFactory | 
| Throws | |
|---|---|
| DatatypeConfigurationException | If the implementation is not available or cannot be instantiated. | 
newXMLGregorianCalendar
public abstract XMLGregorianCalendar newXMLGregorianCalendar (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.
| Parameters | |
|---|---|
| lexicalRepresentation | String: Lexical representation of one the eight XML Schema date/time datatypes. | 
| Returns | |
|---|---|
| XMLGregorianCalendar | XMLGregorianCalendarcreated from thelexicalRepresentation. | 
| Throws | |
|---|---|
| IllegalArgumentException | If the lexicalRepresentationis not a validXMLGregorianCalendar. | 
| NullPointerException | If lexicalRepresentationisnull. | 
newXMLGregorianCalendar
public abstract XMLGregorianCalendar newXMLGregorianCalendar (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,
 
- when this.getTimezone() != FIELD_UNDEFINED, create ajava.util.TimeZonewith a custom timezone id using thethis.getTimezone().
- else use the GregorianCalendardefault timezone value for the host is defined as specified byjava.util.TimeZone.getDefault().
| Parameters | |
|---|---|
| cal | GregorianCalendar:java.util.GregorianCalendarused to createXMLGregorianCalendar | 
| Returns | |
|---|---|
| XMLGregorianCalendar | XMLGregorianCalendarcreated fromjava.util.GregorianCalendar | 
| Throws | |
|---|---|
| NullPointerException | If calisnull. | 
newXMLGregorianCalendar
public 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 is not set.
| Parameters | |
|---|---|
| year | int: ofXMLGregorianCalendarto be created. | 
| month | int: ofXMLGregorianCalendarto be created. | 
| day | int: ofXMLGregorianCalendarto be created. | 
| hour | int: ofXMLGregorianCalendarto be created. | 
| minute | int: ofXMLGregorianCalendarto be created. | 
| second | int: ofXMLGregorianCalendarto be created. | 
| millisecond | int: ofXMLGregorianCalendarto be created. | 
| timezone | int: ofXMLGregorianCalendarto be created. | 
| Returns | |
|---|---|
| XMLGregorianCalendar | XMLGregorianCalendarcreated from specified values. | 
| Throws | |
|---|---|
| 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 XMLGregorianCalendaror if the composite values constitute an invalidXMLGregorianCalendarinstance
   as determined byXMLGregorianCalendar.isValid(). | 
newXMLGregorianCalendar
public abstract XMLGregorianCalendar newXMLGregorianCalendar (BigInteger year, int month, int day, int hour, int minute, int second, 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.
A null value indicates that field is not set.
| Parameters | |
|---|---|
| year | BigInteger: ofXMLGregorianCalendarto be created. | 
| month | int: ofXMLGregorianCalendarto be created. | 
| day | int: ofXMLGregorianCalendarto be created. | 
| hour | int: ofXMLGregorianCalendarto be created. | 
| minute | int: ofXMLGregorianCalendarto be created. | 
| second | int: ofXMLGregorianCalendarto be created. | 
| fractionalSecond | BigDecimal: ofXMLGregorianCalendarto be created. | 
| timezone | int: ofXMLGregorianCalendarto be created. | 
| Returns | |
|---|---|
| XMLGregorianCalendar | XMLGregorianCalendarcreated from specified values. | 
| Throws | |
|---|---|
| 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 XMLGregorianCalendaror if the composite values constitute an invalidXMLGregorianCalendarinstance
   as determined byXMLGregorianCalendar.isValid(). | 
newXMLGregorianCalendar
public abstract XMLGregorianCalendar newXMLGregorianCalendar ()
Create a new instance of an XMLGregorianCalendar.
All date/time datatype fields set to DatatypeConstants.FIELD_UNDEFINED or null.
| Returns | |
|---|---|
| XMLGregorianCalendar | New XMLGregorianCalendarwith all date/time datatype fields set toDatatypeConstants.FIELD_UNDEFINEDor null. | 
newXMLGregorianCalendarDate
public XMLGregorianCalendar newXMLGregorianCalendarDate (int year, int month, int day, int timezone)
Create a Java representation of XML Schema builtin datatype date or g*.
For example, an instance of gYear can be created invoking this factory
 with month and day parameters set to
 DatatypeConstants.FIELD_UNDEFINED.
A DatatypeConstants.FIELD_UNDEFINED value indicates that field is not set.
| Parameters | |
|---|---|
| year | int: ofXMLGregorianCalendarto be created. | 
| month | int: ofXMLGregorianCalendarto be created. | 
| day | int: ofXMLGregorianCalendarto be created. | 
| timezone | int: offset in minutes.DatatypeConstants.FIELD_UNDEFINEDindicates optional field is not set. | 
| Returns | |
|---|---|
| XMLGregorianCalendar | XMLGregorianCalendarcreated from parameter values. | 
| Throws | |
|---|---|
| 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 XMLGregorianCalendaror if the composite values constitute an invalidXMLGregorianCalendarinstance
   as determined byXMLGregorianCalendar.isValid(). | 
See also:
newXMLGregorianCalendarTime
public XMLGregorianCalendar newXMLGregorianCalendarTime (int hours, int minutes, int seconds, BigDecimal fractionalSecond, int timezone)
Create a Java instance of XML Schema builtin datatype time.
A null value indicates that field is not set.
A DatatypeConstants.FIELD_UNDEFINED value indicates that field is not set.
| Parameters | |
|---|---|
| hours | int: number of hours | 
| minutes | int: number of minutes | 
| seconds | int: number of seconds | 
| fractionalSecond | BigDecimal: value ofnullindicates that this optional field is not set. | 
| timezone | int: offset in minutes.DatatypeConstants.FIELD_UNDEFINEDindicates optional field is not set. | 
| Returns | |
|---|---|
| XMLGregorianCalendar | XMLGregorianCalendarcreated from parameter values. | 
| Throws | |
|---|---|
| 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 XMLGregorianCalendaror if the composite values constitute an invalidXMLGregorianCalendarinstance
   as determined byXMLGregorianCalendar.isValid(). | 
See also:
newXMLGregorianCalendarTime
public XMLGregorianCalendar newXMLGregorianCalendarTime (int hours, int minutes, int seconds, int milliseconds, int timezone)
Create a Java instance of XML Schema builtin datatype time.
A DatatypeConstants.FIELD_UNDEFINED value indicates that field is not set.
| Parameters | |
|---|---|
| hours | int: number of hours | 
| minutes | int: number of minutes | 
| seconds | int: number of seconds | 
| milliseconds | int: number of milliseconds | 
| timezone | int: offset in minutes.DatatypeConstants.FIELD_UNDEFINEDindicates optional field is not set. | 
| Returns | |
|---|---|
| XMLGregorianCalendar | XMLGregorianCalendarcreated from parameter values. | 
| Throws | |
|---|---|
| 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 XMLGregorianCalendaror if the composite values constitute an invalidXMLGregorianCalendarinstance
   as determined byXMLGregorianCalendar.isValid(). | 
See also:
newXMLGregorianCalendarTime
public XMLGregorianCalendar newXMLGregorianCalendarTime (int hours, int minutes, int seconds, int timezone)
Create a Java instance of XML Schema builtin datatype time.
A DatatypeConstants.FIELD_UNDEFINED value indicates that field is not set.
| Parameters | |
|---|---|
| hours | int: number of hours | 
| minutes | int: number of minutes | 
| seconds | int: number of seconds | 
| timezone | int: offset in minutes.DatatypeConstants.FIELD_UNDEFINEDindicates optional field is not set. | 
| Returns | |
|---|---|
| XMLGregorianCalendar | XMLGregorianCalendarcreated from parameter values. | 
| Throws | |
|---|---|
| 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 XMLGregorianCalendaror if the composite values constitute an invalidXMLGregorianCalendarinstance
   as determined byXMLGregorianCalendar.isValid(). | 
See also:
