Methods Summary |
---|
public abstract void | add(javax.xml.datatype.Duration duration)Add duration to this instance.
The computation is specified in
XML Schema 1.0 Part 2, Appendix E,
Adding durations to dateTimes>.
date/time field mapping table
defines the mapping from XML Schema 1.0 dateTime fields
to this class' representation of those fields.
|
public abstract void | clear()Unset all fields to undefined.
Set all int fields to {@link DatatypeConstants#FIELD_UNDEFINED} and reference fields
to null.
|
public abstract java.lang.Object | clone()Creates and returns a copy of this object.
|
public abstract int | compare(javax.xml.datatype.XMLGregorianCalendar xmlGregorianCalendar)Compare two instances of W3C XML Schema 1.0 date/time datatypes
according to partial order relation defined in
W3C XML Schema 1.0 Part 2, Section 3.2.7.3,
Order relation on dateTime.
xsd:dateTime datatype field mapping to accessors of
this class are defined in
date/time field mapping table.
|
public boolean | equals(java.lang.Object obj)Indicates whether parameter obj is "equal to" this one.
if (obj == null) {
throw new NullPointerException("Cannot test null for equality with this XMLGregorianCalendar");
}
boolean result = false;
if (obj instanceof XMLGregorianCalendar) {
result = compare((XMLGregorianCalendar) obj) == DatatypeConstants.EQUAL;
}
return result;
|
public abstract int | getDay()Return day in month or {@link DatatypeConstants#FIELD_UNDEFINED}.
Value constraints for this value are summarized in
day field of date/time field mapping table.
|
public abstract java.math.BigInteger | getEon()Return high order component for XML Schema 1.0 dateTime datatype field for
year .
null if this optional part of the year field is not defined.
Value constraints for this value are summarized in
year field of date/time field mapping table.
|
public abstract java.math.BigInteger | getEonAndYear()Return XML Schema 1.0 dateTime datatype field for
year .
Value constraints for this value are summarized in
year field of date/time field mapping table.
|
public abstract java.math.BigDecimal | getFractionalSecond()Return fractional seconds.
null is returned when this optional field is not defined.
Value constraints are detailed in
second field of date/time field mapping table.
This optional field can only have a defined value when the
xs:dateTime second field, represented by {@link #getSecond()},
does not return {@link DatatypeConstants#FIELD_UNDEFINED}.
|
public abstract int | getHour()Return hours or {@link DatatypeConstants#FIELD_UNDEFINED}.
Returns {@link DatatypeConstants#FIELD_UNDEFINED} if this field is not defined.
Value constraints for this value are summarized in
hour field of date/time field mapping table.
|
public int | getMillisecond()Return millisecond precision of {@link #getFractionalSecond()}.
This method represents a convenience accessor to infinite
precision fractional second value returned by
{@link #getFractionalSecond()}. The returned value is the rounded
down to milliseconds value of
{@link #getFractionalSecond()}. When {@link #getFractionalSecond()}
returns null , this method must return
{@link DatatypeConstants#FIELD_UNDEFINED}.
Value constraints for this value are summarized in
second field of date/time field mapping table.
BigDecimal fractionalSeconds = getFractionalSecond();
// is field undefined?
if (fractionalSeconds == null) {
return DatatypeConstants.FIELD_UNDEFINED;
}
return getFractionalSecond().movePointRight(3).intValue();
|
public abstract int | getMinute()Return minutes or {@link DatatypeConstants#FIELD_UNDEFINED}.
Returns {@link DatatypeConstants#FIELD_UNDEFINED} if this field is not defined.
Value constraints for this value are summarized in
minute field of date/time field mapping table.
|
public abstract int | getMonth()Return number of month or {@link DatatypeConstants#FIELD_UNDEFINED}.
Value constraints for this value are summarized in
month field of date/time field mapping table.
|
public abstract int | getSecond()Return seconds or {@link DatatypeConstants#FIELD_UNDEFINED}.
Returns {@link DatatypeConstants#FIELD_UNDEFINED} if this field is not defined.
When this field is not defined, the optional xs:dateTime
fractional seconds field, represented by
{@link #getFractionalSecond()} and {@link #getMillisecond()},
must not be defined.
Value constraints for this value are summarized in
second field of date/time field mapping table.
|
public abstract java.util.TimeZone | getTimeZone(int defaultZoneoffset)Returns a java.util.TimeZone for this class.
If timezone field is defined for this instance,
returns TimeZone initialized with custom timezone id
of zoneoffset. If timezone field is undefined,
try the defaultZoneoffset that was passed in.
If defaultZoneoffset is FIELD_UNDEFINED, return
default timezone for this host.
(Same default as java.util.GregorianCalendar).
|
public abstract int | getTimezone()Return timezone offset in minutes or
{@link DatatypeConstants#FIELD_UNDEFINED} if this optional field is not defined.
Value constraints for this value are summarized in
timezone field of date/time field mapping table.
|
public abstract javax.xml.namespace.QName | getXMLSchemaType()Return the name of the XML Schema date/time type that this instance
maps to. Type is computed based on fields that are set.
Required fields for XML Schema 1.0 Date/Time Datatypes.
(timezone is optional for all date/time datatypes)
|
Datatype |
year |
month |
day |
hour |
minute |
second |
{@link DatatypeConstants#DATETIME} |
X |
X |
X |
X |
X |
X |
{@link DatatypeConstants#DATE} |
X |
X |
X |
|
|
|
{@link DatatypeConstants#TIME} |
|
|
|
X |
X |
X |
{@link DatatypeConstants#GYEARMONTH} |
X |
X |
|
|
|
|
{@link DatatypeConstants#GMONTHDAY} |
|
X |
X |
|
|
|
{@link DatatypeConstants#GYEAR} |
X |
|
|
|
|
|
{@link DatatypeConstants#GMONTH} |
|
X |
|
|
|
|
{@link DatatypeConstants#GDAY} |
|
|
X |
|
|
|
|
public abstract int | getYear()Return low order component for XML Schema 1.0 dateTime datatype field for
year or {@link DatatypeConstants#FIELD_UNDEFINED}.
Value constraints for this value are summarized in
year field of date/time field mapping table.
|
public int | hashCode()Returns a hash code consistent with the definition of the equals method.
// Following two dates compare to EQUALS since in different timezones.
// 2000-01-15T12:00:00-05:00 == 2000-01-15T13:00:00-04:00
//
// Must ensure both instances generate same hashcode by normalizing
// this to UTC timezone.
int timezone = getTimezone();
if (timezone == DatatypeConstants.FIELD_UNDEFINED) {
timezone = 0;
}
XMLGregorianCalendar gc = this;
if (timezone != 0) {
gc = this.normalize();
}
return gc.getYear()
+ gc.getMonth()
+ gc.getDay()
+ gc.getHour()
+ gc.getMinute()
+ gc.getSecond();
|
public abstract boolean | isValid()Validate instance by getXMLSchemaType() constraints.
|
public abstract javax.xml.datatype.XMLGregorianCalendar | normalize()Normalize this instance to UTC.
2000-03-04T23:00:00+03:00 normalizes to 2000-03-04T20:00:00Z
Implements W3C XML Schema Part 2, Section 3.2.7.3 (A).
|
public abstract void | reset()Reset this XMLGregorianCalendar to its original values.
XMLGregorianCalendar is reset to the same values as when it was created with
{@link DatatypeFactory#newXMLGregorianCalendar()},
{@link DatatypeFactory#newXMLGregorianCalendar(String lexicalRepresentation)},
{@link DatatypeFactory#newXMLGregorianCalendar(
BigInteger year,
int month,
int day,
int hour,
int minute,
int second,
BigDecimal fractionalSecond,
int timezone)},
{@link DatatypeFactory#newXMLGregorianCalendar(
int year,
int month,
int day,
int hour,
int minute,
int second,
int millisecond,
int timezone)},
{@link DatatypeFactory#newXMLGregorianCalendar(GregorianCalendar cal)},
{@link DatatypeFactory#newXMLGregorianCalendarDate(
int year,
int month,
int day,
int timezone)},
{@link DatatypeFactory#newXMLGregorianCalendarTime(
int hours,
int minutes,
int seconds,
int timezone)},
{@link DatatypeFactory#newXMLGregorianCalendarTime(
int hours,
int minutes,
int seconds,
BigDecimal fractionalSecond,
int timezone)} or
{@link DatatypeFactory#newXMLGregorianCalendarTime(
int hours,
int minutes,
int seconds,
int milliseconds,
int timezone)}.
reset() is designed to allow the reuse of existing XMLGregorianCalendar s
thus saving resources associated with the creation of new XMLGregorianCalendar s.
|
public abstract void | setDay(int day)Set days in month.
Unset this field by invoking the setter with a parameter value of {@link DatatypeConstants#FIELD_UNDEFINED}.
|
public abstract void | setFractionalSecond(java.math.BigDecimal fractional)Set fractional seconds.
Unset this field by invoking the setter with a parameter value of null .
|
public abstract void | setHour(int hour)Set hours.
Unset this field by invoking the setter with a parameter value of {@link DatatypeConstants#FIELD_UNDEFINED}.
|
public abstract void | setMillisecond(int millisecond)Set milliseconds.
Unset this field by invoking the setter with a parameter value of {@link DatatypeConstants#FIELD_UNDEFINED}.
|
public abstract void | setMinute(int minute)Set minutes.
Unset this field by invoking the setter with a parameter value of {@link DatatypeConstants#FIELD_UNDEFINED}.
|
public abstract void | setMonth(int month)Set month.
Unset this field by invoking the setter with a parameter value of {@link DatatypeConstants#FIELD_UNDEFINED}.
|
public abstract void | setSecond(int second)Set seconds.
Unset this field by invoking the setter with a parameter value of {@link DatatypeConstants#FIELD_UNDEFINED}.
|
public void | setTime(int hour, int minute, int second, java.math.BigDecimal fractional)Set time as one unit, including the optional infinite precision
fractional seconds.
setHour(hour);
setMinute(minute);
setSecond(second);
setFractionalSecond(fractional);
|
public void | setTime(int hour, int minute, int second, int millisecond)Set time as one unit, including optional milliseconds.
setHour(hour);
setMinute(minute);
setSecond(second);
setMillisecond(millisecond);
|
public void | setTime(int hour, int minute, int second)Set time as one unit.
setTime(
hour,
minute,
second,
null // fractional
);
|
public abstract void | setTimezone(int offset)Set the number of minutes in the timezone offset.
Unset this field by invoking the setter with a parameter value of {@link DatatypeConstants#FIELD_UNDEFINED}.
|
public abstract void | setYear(java.math.BigInteger year)Set low and high order component of XSD dateTime year field.
Unset this field by invoking the setter with a parameter value of null .
|
public abstract void | setYear(int year)Set year of XSD dateTime year field.
Unset this field by invoking the setter with a parameter value of
{@link DatatypeConstants#FIELD_UNDEFINED}.
Note: if the absolute value of the year parameter
is less than 10^9, the eon component of the XSD year field is set to
null by this method.
|
public abstract java.util.GregorianCalendar | toGregorianCalendar()Convert this XMLGregorianCalendar to a {@link GregorianCalendar}.
When this instance has an undefined field, this
conversion relies on the java.util.GregorianCalendar default
for its corresponding field. A notable difference between
XML Schema 1.0 date/time datatypes and java.util.GregorianCalendar
is that Timezone value is optional for date/time datatypes and it is
a required field for java.util.GregorianCalendar . See javadoc
for java.util.TimeZone.getDefault() on how the default
is determined. To explicitly specify the TimeZone
instance, see
{@link #toGregorianCalendar(TimeZone, Locale, XMLGregorianCalendar)}.
Field by Field Conversion from this class to
java.util.GregorianCalendar
|
java.util.GregorianCalendar field |
javax.xml.datatype.XMLGregorianCalendar field |
ERA |
{@link #getEonAndYear()}.signum() < 0 ? GregorianCalendar.BC : GregorianCalendar.AD |
YEAR |
{@link #getEonAndYear()}.abs().intValue() * |
MONTH |
{@link #getMonth()} - {@link DatatypeConstants#JANUARY} + {@link GregorianCalendar#JANUARY} |
DAY_OF_MONTH |
{@link #getDay()} |
HOUR_OF_DAY |
{@link #getHour()} |
MINUTE |
{@link #getMinute()} |
SECOND |
{@link #getSecond()} |
MILLISECOND |
get millisecond order from {@link #getFractionalSecond()}* |
GregorianCalendar.setTimeZone(TimeZone) |
{@link #getTimezone()} formatted into Custom timezone id |
* designates possible loss of precision during the conversion due
to source datatype having higher precision than target datatype.
To ensure consistency in conversion implementations, the new
GregorianCalendar should be instantiated in following
manner.
- Using
timeZone value as defined above, create a new
java.util.GregorianCalendar(timeZone,Locale.getDefault()) .
- Initialize all GregorianCalendar fields by calling {(@link GegorianCalendar#clear()}.
- Obtain a pure Gregorian Calendar by invoking
GregorianCalendar.setGregorianChange(
new Date(Long.MIN_VALUE)) .
- Its fields ERA, YEAR, MONTH, DAY_OF_MONTH, HOUR_OF_DAY,
MINUTE, SECOND and MILLISECOND are set using the method
Calendar.set(int,int)
|
public abstract java.util.GregorianCalendar | toGregorianCalendar(java.util.TimeZone timezone, java.util.Locale aLocale, javax.xml.datatype.XMLGregorianCalendar defaults)Convert this XMLGregorianCalendar along with provided parameters
to a {@link GregorianCalendar} instance.
Since XML Schema 1.0 date/time datetypes has no concept of
timezone ids or daylight savings timezone ids, this conversion operation
allows the user to explicitly specify one with
timezone parameter.
To compute the return value's TimeZone field,
- when parameter
timeZone is non-null,
it is the timezone field.
- else when
this.getTimezone() != FIELD_UNDEFINED ,
create a java.util.TimeZone with a custom timezone id
using the this.getTimezone() .
- else when
defaults.getTimezone() != FIELD_UNDEFINED ,
create a java.util.TimeZone with a custom timezone id
using defaults.getTimezone() .
- else use the
GregorianCalendar default timezone value
for the host is defined as specified by
java.util.TimeZone.getDefault() .
To ensure consistency in conversion implementations, the new
GregorianCalendar should be instantiated in following
manner.
- Create a new
java.util.GregorianCalendar(TimeZone,
Locale) with TimeZone set as specified above and the
Locale parameter.
- Initialize all GregorianCalendar fields by calling {@link GregorianCalendar#clear()}
- Obtain a pure Gregorian Calendar by invoking
GregorianCalendar.setGregorianChange(
new Date(Long.MIN_VALUE)) .
- Its fields ERA, YEAR, MONTH, DAY_OF_MONTH, HOUR_OF_DAY,
MINUTE, SECOND and MILLISECOND are set using the method
Calendar.set(int,int)
|
public java.lang.String | toString()Returns a String representation of this XMLGregorianCalendar Object .
The result is a lexical representation generated by {@link #toXMLFormat()}.
return toXMLFormat();
|
public abstract java.lang.String | toXMLFormat()Return the lexical representation of this instance.
The format is specified in
XML Schema 1.0 Part 2, Section 3.2.[7-14].1,
Lexical Representation".
Specific target lexical representation format is determined by
{@link #getXMLSchemaType()}.
|