Package net.sf.saxon.value
Class DayTimeDurationValue
java.lang.Object
net.sf.saxon.value.AtomicValue
net.sf.saxon.value.DurationValue
net.sf.saxon.value.DayTimeDurationValue
- All Implemented Interfaces:
Comparable<XPathComparable>,Iterable<AtomicValue>,AtomicMatchKey,XPathComparable,AtomicSequence,GroundedValue,IdentityComparable,Item,Sequence,ConversionResult
A value of type xs:dayTimeDuration (or a subtype thereof).
Internally this is held as an BigDecimal number of seconds. Some of the constructor and accessor methods cannot handle the full range of values.
-
Nested Class Summary
Nested classes/interfaces inherited from class net.sf.saxon.value.DurationValue
DurationValue.DurationComparable -
Field Summary
Fields inherited from class net.sf.saxon.value.DurationValue
_months, _secondsFields inherited from class net.sf.saxon.value.AtomicValue
metadata -
Constructor Summary
ConstructorsConstructorDescriptionDayTimeDurationValue(BigDecimal seconds) DayTimeDurationValue(BigDecimal seconds, AtomicType typeLabel) -
Method Summary
Modifier and TypeMethodDescriptionadd(DurationValue other) Add two dayTimeDurationsdivide(double n) Divide duration by a number.divide(DurationValue other) Find the ratio between two durationsstatic DayTimeDurationValuefromJavaDuration(Duration duration) Factory method taking a Java 8Durationobjectstatic DayTimeDurationValuefromMilliseconds(long milliseconds) Construct a duration value as a number of milliseconds.static DayTimeDurationValuefromNanoseconds(long nanoseconds) Construct a duration value as a number of nanoseconds.longGet the length of duration in microseconds, as a longdoubleGet the length of duration in seconds.Convert to stringDetermine the primitive type of the value.getXPathComparable(StringCollator collator, int implicitTimezone, int specVersion) Get an object value that implements the XPath equality and ordering comparison semantics for this value.getXPathMatchKey(StringCollator collator, int implicitTimezone, int specVersion) Get a Comparable value that implements the XPath ordering comparison semantics for this value.static ConversionResultFactory method: create a duration value from a supplied string, in ISO 8601 format[-]PnDTnHnMnSmultiply(double n) Multiply duration by a number.multiply(long factor) Multiply a duration by an integermultiply(BigDecimal factor) Multiply a duration by a decimalnegate()Negate a duration (same as subtracting from zero, but it preserves the type of the original duration)subtract(DurationValue other) Subtract two dayTime-durationsConvert this value to a Java 8DurationobjecttoString()Get string value.withMetadata(AtomicMetadata metadata) Create a copy of this atomic value, with a different type labelMethods inherited from class net.sf.saxon.value.DurationValue
badDuration, badDuration, compareTo, equals, getComponent, getDays, getDaysHoursMinutesAndSeconds, getHours, getMinutes, getMonths, getSchemaComparable, getSeconds, getTotalMonths, getTotalSeconds, getYears, hashCode, makeDuration, makeDuration, signum, simpleIntegerMethods inherited from class net.sf.saxon.value.AtomicValue
asAtomic, asMapKey, atomize, checkPermittedContents, checkValidInJavascript, effectiveBooleanValue, getCanonicalLexicalRepresentation, getCardinality, getGenre, getItemType, getLabel, getLength, getUnicodeStringValue, getUType, head, identityHashCode, isIdentical, isIdentical, isNaN, isUntypedAtomic, itemAt, iterate, iterator, show, toShortStringMethods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface net.sf.saxon.expr.sort.AtomicMatchKey
asAtomic, longHashCodeMethods inherited from interface java.lang.Comparable
compareToMethods inherited from interface net.sf.saxon.om.GroundedValue
asIterable, concatenate, containsNode, materializeMethods inherited from interface net.sf.saxon.om.Item
getStringValue, isStreamed, reduce, subsequenceMethods inherited from interface java.lang.Iterable
forEach, spliteratorMethods inherited from interface net.sf.saxon.om.Sequence
makeRepeatable
-
Constructor Details
-
DayTimeDurationValue
-
DayTimeDurationValue
-
-
Method Details
-
makeDayTimeDurationValue
Factory method: create a duration value from a supplied string, in ISO 8601 format[-]PnDTnHnMnS- Parameters:
s- the lexical representation of the xs:dayTimeDuration value- Returns:
- a
DayTimeDurationValueif the format is correct, or aValidationFailureif not
-
withMetadata
Create a copy of this atomic value, with a different type label- Overrides:
withMetadatain classDurationValue- Parameters:
metadata- the type label of the new copy. The caller is responsible for checking that the value actually conforms to this type.- Returns:
- the copied value
-
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.- Overrides:
getPrimitiveTypein classDurationValue- Returns:
- the primitive type
-
getPrimitiveStringValue
Convert to string- Overrides:
getPrimitiveStringValuein classDurationValue- Returns:
- ISO 8601 representation.
-
toString
Description copied from class:AtomicValueGet string value.- Overrides:
toStringin classAtomicValue
-
getLengthInSeconds
public double getLengthInSeconds()Get the length of duration in seconds. Note this may involve loss of precision. For an exact result, useDurationValue.getTotalSeconds()- Returns:
- an approximation to the length of the duration in seconds, expressed as a double. May be negative.
-
getLengthInMicroseconds
public long getLengthInMicroseconds()Get the length of duration in microseconds, as a long- Returns:
- the length in nanoseconds, divided by one thousand, rounded towards zero
- Throws:
ArithmeticException- if the number of microseconds is too high to be returned as a long.
-
fromMilliseconds
Construct a duration value as a number of milliseconds.- Parameters:
milliseconds- the number of milliseconds in the duration (may be negative)- Returns:
- the corresponding xs:dayTimeDuration value
-
fromNanoseconds
Construct a duration value as a number of nanoseconds.- Parameters:
nanoseconds- the number of nanoseconds in the duration.- Returns:
- the xs:dayTimeDuration represented by the given number of nanoseconds
-
fromJavaDuration
Factory method taking a Java 8Durationobject- Parameters:
duration- a duration as a Java 8java.time.Duration- Returns:
- the new xs:dayTimeDuration
- Since:
- 9.9
-
toJavaDuration
Convert this value to a Java 8Durationobject- Returns:
- the duration expressed as a Java 8
java.time.Duration - Since:
- 9.9
-
multiply
Multiply a duration by an integer- Overrides:
multiplyin classDurationValue- Parameters:
factor- the number to multiply by- Returns:
- the result of the multiplication
- Throws:
XPathException- if an error is detected
-
multiply
Multiply duration by a number. Follows the semantics of op:multiply-dayTimeDuration.- Overrides:
multiplyin classDurationValue- Parameters:
n- the number to multiply by.- Returns:
- the result of the multiplication
- Throws:
XPathException- if the operand is Infinite or NaN, or if the resulting duration exceeds Saxon limits (2^63 seconds)
-
multiply
Description copied from class:DurationValueMultiply a duration by a decimal- Overrides:
multiplyin classDurationValue- Parameters:
factor- the number to multiply by- Returns:
- the result of the multiplication
- Throws:
XPathException- if an error is detected
-
divide
Divide duration by a number. Follows the semantics of op:divide-dayTimeDuration.- Overrides:
dividein classDurationValue- Parameters:
n- the number to divide by.- Returns:
- the result of the division
- Throws:
XPathException- if the operand is zero or NaN, or if the resulting duration exceeds Saxon limits (2^63 seconds)
-
divide
Find the ratio between two durations- Overrides:
dividein classDurationValue- Parameters:
other- the dividend- Returns:
- the ratio, as a decimal
- Throws:
XPathException- when dividing by zero, or when dividing two durations of different type
-
add
Add two dayTimeDurations- Overrides:
addin classDurationValue- Parameters:
other- the duration to be added to this one- Returns:
- the sum of the two durations
- Throws:
XPathException- if an error is detected
-
subtract
Subtract two dayTime-durations- Overrides:
subtractin classDurationValue- Parameters:
other- the duration to be subtracted from this one- Returns:
- the difference of the two durations
- Throws:
XPathException- if an error is detected
-
negate
Negate a duration (same as subtracting from zero, but it preserves the type of the original duration)- Overrides:
negatein classDurationValue- Returns:
- the original duration with its sign reversed, retaining its type
- Throws:
IllegalArgumentException
-
getXPathComparable
public XPathComparable getXPathComparable(StringCollator collator, int implicitTimezone, int specVersion) Description copied from class:AtomicValueGet an object value that implements the XPath equality and ordering comparison semantics for this value. A collation is supplied for comparing strings, and an implicit timezone for comparing date/time values that have no saved timezone. An atomic value may return itself as the result, provided that its ordering rules are independent of the collation and timezone, and provided that it implements the XPathComparable interface: which means that its compareTo, equals, and hashCode methods must be compatible with the rules for XPath value comparisons.- Overrides:
getXPathComparablein classDurationValue- Parameters:
collator- the collation to be used when comparing stringsimplicitTimezone- the implicit timezone in the dynamic context, used when comparing dates/times with and without timezonespecVersion- the version of the XPath specification (31 for 3.1, 40 for 4.0)- Returns:
- an Object that implements the XPath value comparison semantics with respect to this atomic value. For an atomic type that is not ordered (according to XPath rules), return null.
-
getXPathMatchKey
public AtomicMatchKey getXPathMatchKey(StringCollator collator, int implicitTimezone, int specVersion) 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 the value itself. This is modified for types such as xs:duration which allow ordering comparisons in XML Schema, but not in XPath.- Overrides:
getXPathMatchKeyin classDurationValue- Parameters:
collator- Collation used for string comparisonimplicitTimezone- XPath dynamic contextspecVersion-- Returns:
- an Object whose equals() and hashCode() methods implement the XPath comparison semantics with respect to this atomic value. If ordered is specified, the result will either be null if no ordering is defined, or will be a Comparable
-