net.sf.saxon.value
Class DateTimeValue

java.lang.Object
  extended by net.sf.saxon.value.Value
      extended by net.sf.saxon.value.AtomicValue
          extended by net.sf.saxon.value.CalendarValue
              extended by net.sf.saxon.value.DateTimeValue
All Implemented Interfaces:
Serializable, Comparable, SequenceIterable, Item, ValueRepresentation

public final class DateTimeValue
extends CalendarValue

A value of type DateTime

See Also:
Serialized Form

Field Summary
 
Fields inherited from class net.sf.saxon.value.CalendarValue
NO_TIMEZONE
 
Fields inherited from class net.sf.saxon.value.Value
EMPTY_CLASS_ARRAY, INDETERMINATE_ORDERING
 
Fields inherited from interface net.sf.saxon.om.ValueRepresentation
EMPTY_VALUE_ARRAY
 
Constructor Summary
DateTimeValue(Calendar calendar, boolean tzSpecified)
          Constructor: create a dateTime value given a Java calendar object
DateTimeValue(CharSequence s)
          Constructor: create a dateTime value from a supplied string, in ISO 8601 format
DateTimeValue(int year, byte month, byte day, byte hour, byte minute, byte second, int microsecond, int tz)
          Constructor: construct a DateTimeValue from its components.
 
Method Summary
 CalendarValue add(DurationValue duration)
          Add a duration to a dateTime
 CalendarValue adjustTimezone(int timezone)
          Return a new dateTime with the same normalized value, but in a different timezone.
 int compareTo(CalendarValue other, Configuration config)
          Compare the value to another dateTime value, following the XPath comparison semantics
 int compareTo(Object other)
          Compare the value to another dateTime value.
 AtomicValue convertPrimitive(BuiltInAtomicType requiredType, boolean validate, XPathContext context)
          Convert to target data type
 Object convertToJava(Class target, XPathContext context)
          Convert to Java object (for passing to external functions)
 AtomicValue copy(AtomicType typeLabel)
          Make a copy of this date, time, or dateTime value
 boolean equals(Object other)
          Compare two (sequence) values for equality.
static DateTimeValue fromJavaDate(Date suppliedDate)
          Factory method: create a dateTime value given a Java Date object.
static DateTimeValue fromJulianInstant(BigDecimal instant)
          Get the DateTimeValue corresponding to a given Julian instant
 GregorianCalendar getCalendar()
          Get a Calendar object representing the value of this DateTime.
 ComparisonKey getComparisonKey(Configuration config)
          Get a comparison key for this value.
 AtomicValue getComponent(int component)
          Get a component of the value.
static DateTimeValue getCurrentDateTime(XPathContext context)
          Get the dateTime value representing the nominal date/time of this transformation run.
 byte getDay()
          Get the day component, 1-31
 byte getHour()
          Get the hour component, 0-23
 int getMicrosecond()
          Get the microsecond component, 0-999999
 byte getMinute()
          Get the minute component, 0-59
 byte getMonth()
          Get the month component, 1-12
 BuiltInAtomicType getPrimitiveType()
          Determine the primitive type of the value.
 byte getSecond()
          Get the second component, 0-59
 CharSequence getStringValueCS()
          Convert to string
 Comparable getXPathComparable()
          Get a Comparable value that implements the XPath ordering comparison semantics for this value.
 int getYear()
          Get the year component, in its internal form (which allows a year zero)
 int hashCode()
          Return a hash code to support the equals() function
static DateTimeValue makeDateTimeValue(DateValue date, TimeValue time)
          Factory method: create a dateTime value given a date and a time.
 DateTimeValue normalize(Configuration cc)
          Normalize the date and time to be in timezone Z.
 DayTimeDurationValue subtract(CalendarValue other, XPathContext context)
          Determine the difference between two points in time, as a duration
 DateTimeValue toDateTime()
          Convert the value to a DateTime, retaining all the components that are actually present, and substituting conventional values for components that are missing
 BigDecimal toJulianInstant()
          Get the Julian instant: a decimal value whose integer part is the Julian day number multiplied by the number of seconds per day, and whose fractional part is the fraction of the second.
 
Methods inherited from class net.sf.saxon.value.CalendarValue
adjustTimezone, appendTimezone, appendTimezone, getStringValue, getTimezoneInMinutes, hasTimezone, removeTimezone, setTimezoneInMinutes
 
Methods inherited from class net.sf.saxon.value.AtomicValue
checkPermittedContents, convert, convert, effectiveBooleanValue, getCardinality, getItemType, getLength, getTypedValue, getTypeLabel, hasBuiltInType, isMultiValued, itemAt, iterate, process, setTypeLabel, toString
 
Methods inherited from class net.sf.saxon.value.Value
asItem, asItem, asIterator, asValue, convert, convertJavaObjectToXPath, fromItem, getCanonicalLexicalRepresentation, getIterator, getSchemaComparable, iterate, makeQNameValue, reduce, stringToNumber
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Constructor Detail

DateTimeValue

public DateTimeValue(Calendar calendar,
                     boolean tzSpecified)
Constructor: create a dateTime value given a Java calendar object

Parameters:
calendar - holds the date and time
tzSpecified - indicates whether the timezone is specified

DateTimeValue

public DateTimeValue(CharSequence s)
              throws XPathException
Constructor: create a dateTime value from a supplied string, in ISO 8601 format

Throws:
XPathException

DateTimeValue

public DateTimeValue(int year,
                     byte month,
                     byte day,
                     byte hour,
                     byte minute,
                     byte second,
                     int microsecond,
                     int tz)
Constructor: construct a DateTimeValue from its components. This constructor performs no validation.

Parameters:
year - The year as held internally (note that the year before 1AD is 0)
month - The month, 1-12
day - The day 1-31
hour - the hour value, 0-23
minute - the minutes value, 0-59
second - the seconds value, 0-59
microsecond - the number of microseconds, 0-999999
tz - the timezone displacement in minutes from UTC. Supply the value CalendarValue.NO_TIMEZONE if there is no timezone component.
Method Detail

getCurrentDateTime

public static DateTimeValue getCurrentDateTime(XPathContext context)
Get the dateTime value representing the nominal date/time of this transformation run. Two calls within the same query or transformation will always return the same answer.


fromJavaDate

public static DateTimeValue fromJavaDate(Date suppliedDate)
                                  throws XPathException
Factory method: create a dateTime value given a Java Date object. The returned dateTime value will always have a timezone, which will always be UTC.

Parameters:
suppliedDate - holds the date and time
Throws:
XPathException

makeDateTimeValue

public static DateTimeValue makeDateTimeValue(DateValue date,
                                              TimeValue time)
                                       throws XPathException
Factory method: create a dateTime value given a date and a time.

Parameters:
date - the date
time - the time
Returns:
the dateTime with the given components. If either component is null, returns null
Throws:
XPathException - if the timezones are both present and inconsistent

getPrimitiveType

public BuiltInAtomicType getPrimitiveType()
Determine the primitive type of the value. This delivers the same answer as getItemType().getPrimitiveItemType(). The primitive types are the 19 primitive types of XML Schema, plus xs:integer, xs:dayTimeDuration and xs:yearMonthDuration, and xs:untypedAtomic. For external objects, the result is AnyAtomicType.

Specified by:
getPrimitiveType in class AtomicValue

getYear

public int getYear()
Get the year component, in its internal form (which allows a year zero)


getMonth

public byte getMonth()
Get the month component, 1-12


getDay

public byte getDay()
Get the day component, 1-31


getHour

public byte getHour()
Get the hour component, 0-23


getMinute

public byte getMinute()
Get the minute component, 0-59


getSecond

public byte getSecond()
Get the second component, 0-59


getMicrosecond

public int getMicrosecond()
Get the microsecond component, 0-999999


toDateTime

public DateTimeValue toDateTime()
Convert the value to a DateTime, retaining all the components that are actually present, and substituting conventional values for components that are missing

Specified by:
toDateTime in class CalendarValue

normalize

public DateTimeValue normalize(Configuration cc)
Normalize the date and time to be in timezone Z.

Parameters:
cc - used to supply the implicit timezone, used when the value has no explicit timezone
Returns:
in general, a new DateTimeValue in timezone Z, representing the same instant in time. Returns the original DateTimeValue if this is already in timezone Z.

getXPathComparable

public Comparable getXPathComparable()
Get a Comparable value that implements the XPath ordering comparison semantics for this value. Returns null if the value is not comparable according to XPath rules. The default implementation returns null. This is overridden for types that allow ordered comparisons in XPath: numeric, boolean, string, date, time, dateTime, yearMonthDuration, dayTimeDuration, and anyURI.

Overrides:
getXPathComparable in class AtomicValue

getComparisonKey

public ComparisonKey getComparisonKey(Configuration config)
Get a comparison key for this value. Two values are equal if and only if they their comparison keys are equal

Specified by:
getComparisonKey in class CalendarValue

toJulianInstant

public BigDecimal toJulianInstant()
Get the Julian instant: a decimal value whose integer part is the Julian day number multiplied by the number of seconds per day, and whose fractional part is the fraction of the second. This method operates on the local time, ignoring the timezone. The caller should call normalize() before calling this method to get a normalized time.


fromJulianInstant

public static DateTimeValue fromJulianInstant(BigDecimal instant)
Get the DateTimeValue corresponding to a given Julian instant


getCalendar

public GregorianCalendar getCalendar()
Get a Calendar object representing the value of this DateTime. This will respect the timezone if there is one, or be in GMT otherwise.

Specified by:
getCalendar in class CalendarValue
Returns:
A Calendar object representing the date and time. Note that Java can only represent the time to millisecond precision, and that it does not support the full range of timezones required by XPath (-14:00 to +14:00)

convertPrimitive

public AtomicValue convertPrimitive(BuiltInAtomicType requiredType,
                                    boolean validate,
                                    XPathContext context)
Convert to target data type

Specified by:
convertPrimitive in class AtomicValue
Parameters:
requiredType - an integer identifying the required atomic type
context -
validate - true if validation is required. If set to false, the caller guarantees that the value is valid for the target data type, and that further validation is therefore not required. Note that a validation failure may be reported even if validation was not requested.
Returns:
an AtomicValue, a value of the required type; or an ErrorValue

getStringValueCS

public CharSequence getStringValueCS()
Convert to string

Specified by:
getStringValueCS in interface Item
Specified by:
getStringValueCS in interface ValueRepresentation
Overrides:
getStringValueCS in class AtomicValue
Returns:
ISO 8601 representation. The value returned is the localized representation, that is it uses the timezone contained within the value itself.
See Also:
Item.getStringValue()

copy

public AtomicValue copy(AtomicType typeLabel)
Make a copy of this date, time, or dateTime value

Specified by:
copy in class AtomicValue
Parameters:
typeLabel -

adjustTimezone

public CalendarValue adjustTimezone(int timezone)
Return a new dateTime with the same normalized value, but in a different timezone. This is called only for a DateTimeValue that has an explicit timezone

Specified by:
adjustTimezone in class CalendarValue
Parameters:
timezone - the new timezone offset, in minutes
Returns:
the date/time in the new timezone. This will be a new DateTimeValue unless no change was required to the original value

add

public CalendarValue add(DurationValue duration)
                  throws XPathException
Add a duration to a dateTime

Specified by:
add in class CalendarValue
Parameters:
duration - the duration to be added (may be negative)
Returns:
the new date
Throws:
XPathException - if the duration is an xs:duration, as distinct from a subclass thereof

subtract

public DayTimeDurationValue subtract(CalendarValue other,
                                     XPathContext context)
                              throws XPathException
Determine the difference between two points in time, as a duration

Overrides:
subtract in class CalendarValue
Parameters:
other - the other point in time
context -
Returns:
the duration as an xs:dayTimeDuration
Throws:
XPathException - for example if one value is a date and the other is a time

convertToJava

public Object convertToJava(Class target,
                            XPathContext context)
                     throws XPathException
Convert to Java object (for passing to external functions)

Overrides:
convertToJava in class Value
Throws:
XPathException

getComponent

public AtomicValue getComponent(int component)
                         throws XPathException
Get a component of the value. Returns null if the timezone component is requested and is not present.

Overrides:
getComponent in class AtomicValue
Throws:
XPathException

compareTo

public int compareTo(Object other)
Compare the value to another dateTime value.

This method is not used for XPath comparisons because it does not have access to the implicitTimezone from the dynamic context. It is available for schema comparisons, although it does not currently implement the XML Schema semantics for timezone comparison (which involve partial ordering)

Specified by:
compareTo in interface Comparable
Overrides:
compareTo in class Value
Parameters:
other - The other dateTime value
Returns:
negative value if this one is the earler, 0 if they are chronologically equal, positive value if this one is the later. For this purpose, dateTime values with an unknown timezone are considered to be values in the implicit timezone (the Comparable interface requires a total ordering).
Throws:
ClassCastException - if the other value is not a DateTimeValue (the parameter is declared as Object to satisfy the Comparable interface)

compareTo

public int compareTo(CalendarValue other,
                     Configuration config)
Compare the value to another dateTime value, following the XPath comparison semantics

Specified by:
compareTo in class CalendarValue
Parameters:
other - The other dateTime value
config - A Configuration used to supply the implicit timezone
Returns:
negative value if this one is the earler, 0 if they are chronologically equal, positive value if this one is the later. For this purpose, dateTime values with an unknown timezone are considered to be values in the implicit timezone (the Comparable interface requires a total ordering).
Throws:
ClassCastException - if the other value is not a DateTimeValue (the parameter is declared as Object to satisfy the Comparable interface)

equals

public boolean equals(Object other)
Description copied from class: Value
Compare two (sequence) values for equality. This supports identity constraints in XML Schema, which allow list-valued elements and attributes to participate in key and uniqueness constraints. This method returns false if any error occurs during the comparison, or if any of the items in either sequence is a node rather than an atomic value.

Overrides:
equals in class Value

hashCode

public int hashCode()
Description copied from class: Value
Return a hash code to support the equals() function

Overrides:
hashCode in class Value


Copyright (C) Michael H. Kay. All rights reserved.