Class DateValue
java.lang.Object
net.sf.saxon.value.Value
net.sf.saxon.value.AtomicValue
net.sf.saxon.value.CalendarValue
net.sf.saxon.value.DateValue
- All Implemented Interfaces:
Serializable, Comparable, Expression, Item, ValueRepresentation
- Direct Known Subclasses:
GDayValue, GMonthDayValue, GMonthValue, GYearMonthValue, GYearValue
A value of type Date. Note that a Date may include a TimeZone.
- See Also:
-
Field Summary
FieldsFields inherited from class CalendarValue
NO_TIMEZONEFields inherited from class Value
EMPTY_CLASS_ARRAYFields inherited from interface Expression
EVALUATE_METHOD, ITERATE_METHOD, PROCESS_METHODFields inherited from interface ValueRepresentation
EMPTY_VALUE_ARRAY -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedDefault constructor needed for subtypingDateValue(int year, byte month, byte day) Constructor given a year, month, and day.DateValue(int year, byte month, byte day, int tz) Constructor given a year, month, and day, and timezone.Constructor: create a dateTime value from a supplied string, in ISO 8601 formatDateValue(GregorianCalendar calendar, int tz) Create a DateValue -
Method Summary
Modifier and TypeMethodDescriptionadd(DurationValue duration) Add a duration to a dateadjustTimezone(int timezone) Return a new date with the same normalized value, but in a different timezone.intCompare the value to another date value.intcompareTo(CalendarValue other, Configuration config) Compare this value to another value of the same type, using the supplied context object to get the implicit timezone if required.convertPrimitive(BuiltInAtomicType requiredType, boolean validate, XPathContext context) Convert to target data typeconvertToJava(Class target, XPathContext context) Convert to Java object (for passing to external functions)copy()Make a copy of this date, time, or dateTime valuestatic DateValuedateFromJulianDayNumber(int julianDayNumber) Get the Gregorian date corresponding to a particular Julian day number.booleanCompare two (sequence) values for equality.Get a Java Calendar object that represents this date/time value.getComparisonKey(Configuration config) Get a comparison key for this value.getComponent(int component) Get a component of the value.bytegetDay()Get the day component of the date (in local form)static final intgetDayOfWeek(int year, int month, int day) Get the day of the week.static final intgetDayWithinYear(int year, int month, int day) Get the ordinal day number within the year (1 Jan = 1, 1 Feb = 32, etc)Determine the data type of the expressionstatic intgetJulianDayNumber(int year, int month, int day) Calculate the Julian day number at 00:00 on a given date.bytegetMonth()Get the month component of the date (in local form)Convert to stringstatic final intgetWeekNumber(int year, int month, int day) Get the ISO week number for a given date.static final intgetWeekNumberWithinMonth(int year, int month, int day) Get the week number within a month.intgetYear()Get the year component of the date (in local form)inthashCode()Return a hash code to support the equals() functionstatic booleanisLeapYear(int year) Test whether a year is a leap yearstatic booleanisValidDate(int year, int month, int day) static voidTemporary test rigvoidInitialize the DateValue using a character string in the format yyyy-mm-dd and an optional time zone.subtract(CalendarValue other, XPathContext context) Determine the difference between two points in time, as a durationConvert to DateTimestatic DateValuetomorrow(int year, byte month, byte day) Get the date that immediately follows a given datestatic DateValueyesterday(int year, byte month, byte day) Get the date that immediately precedes a given dateMethods inherited from class CalendarValue
appendString, appendTimezone, appendTimezone, appendTwoDigits, getStringValue, getTimezoneInMinutes, hasTimezone, removeTimezone, setTimezoneInMinutesMethods inherited from class AtomicValue
checkPermittedContents, convert, convert, display, effectiveBooleanValue, evaluateAsString, evaluateItem, getCardinality, getImplementationMethod, getLength, getPrimitiveValue, getTypedValue, hasBuiltInType, iterate, process, toStringMethods inherited from class Value
asItem, asIterator, asValue, convert, convertJavaObjectToXPath, getDependencies, getIterator, getParentExpression, getSpecialProperties, itemAt, iterateSubExpressions, makeQNameValue, optimize, promote, reduce, simplify, stringToNumber, typeCheck
-
Field Details
-
year
protected int year -
month
protected byte month -
day
protected byte day
-
-
Constructor Details
-
DateValue
protected DateValue()Default constructor needed for subtyping -
DateValue
public DateValue(int year, byte month, byte day) Constructor given a year, month, and day. Performs no validation.- Parameters:
year- The year as held internally (note that the year before 1AD is 0)month- The month, 1-12day- The day 1-31
-
DateValue
public DateValue(int year, byte month, byte day, int tz) Constructor given a year, month, and day, and timezone. Performs no validation.- Parameters:
year- The year as held internally (note that the year before 1AD is 0)month- The month, 1-12day- The day 1-31tz- the timezone displacement in minutes from UTC. Supply the valueCalendarValue.NO_TIMEZONEif there is no timezone component.
-
DateValue
Constructor: create a dateTime value from a supplied string, in ISO 8601 format- Throws:
XPathException
-
DateValue
Create a DateValue- Parameters:
calendar- the absolute date/time valuetz- The timezone offset from GMT in minutes, positive or negative; or the special value NO_TIMEZONE indicating that the value is not in a timezone
-
-
Method Details
-
setLexicalValue
Initialize the DateValue using a character string in the format yyyy-mm-dd and an optional time zone. Input must have format [-]yyyy-mm-dd[([+|-]hh:mm | Z)]- Parameters:
s- the supplied string value- Throws:
XPathException
-
getYear
public int getYear()Get the year component of the date (in local form) -
getMonth
public byte getMonth()Get the month component of the date (in local form) -
getDay
public byte getDay()Get the day component of the date (in local form) -
isValidDate
public static boolean isValidDate(int year, int month, int day) -
isLeapYear
public static boolean isLeapYear(int year) Test whether a year is a leap year -
tomorrow
Get the date that immediately follows a given date- Returns:
- a new DateValue with no timezone information
-
yesterday
Get the date that immediately precedes a given date- Returns:
- a new DateValue with no timezone information
-
convertPrimitive
public AtomicValue convertPrimitive(BuiltInAtomicType requiredType, boolean validate, XPathContext context) Convert to target data type- Specified by:
convertPrimitivein classAtomicValue- Parameters:
requiredType- an integer identifying the required atomic typevalidate- 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.context-- Returns:
- an AtomicValue, a value of the required type; or an ErrorValue
-
toDateTime
Convert to DateTime- Specified by:
toDateTimein classCalendarValue
-
getStringValueCS
Convert to string- Specified by:
getStringValueCSin interfaceItem- Specified by:
getStringValueCSin interfaceValueRepresentation- Overrides:
getStringValueCSin classAtomicValue- Returns:
- ISO 8601 representation.
- See Also:
-
getCalendar
Description copied from class:CalendarValueGet a Java Calendar object that represents this date/time value. The Calendar object will be newly created for the purpose- Specified by:
getCalendarin classCalendarValue- 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)
-
getItemType
Determine the data type of the expression- Specified by:
getItemTypein interfaceExpression- Overrides:
getItemTypein classValue- Parameters:
th-- Returns:
- Type.DATE_TYPE,
-
copy
Make a copy of this date, time, or dateTime value- Specified by:
copyin classCalendarValue
-
adjustTimezone
Return a new date with the same normalized value, but in a different timezone. This is called only for a DateValue that has an explicit timezone- Specified by:
adjustTimezonein classCalendarValue- Parameters:
timezone- the new timezone offset, in minutes- Returns:
- the time in the new timezone. This will be a new TimeValue unless no change was required to the original value
-
convertToJava
Convert to Java object (for passing to external functions)- Overrides:
convertToJavain classValue- Throws:
XPathException
-
getComponent
Get a component of the value. Returns null if the timezone component is requested and is not present.- Overrides:
getComponentin classAtomicValue- Throws:
XPathException
-
compareTo
Compare the value to another date value. This method is used only during schema processing, and uses XML Schema semantics rather than XPath semantics.- Parameters:
other- The other date value. Must be an object of class DateValue.- Returns:
- negative value if this one is the earlier, 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 UTC values (the Comparable interface requires a total ordering).
- Throws:
ClassCastException- if the other value is not a DateValue (the parameter is declared as Object to satisfy the Comparable interface)
-
compareTo
Compare this value to another value of the same type, using the supplied context object to get the implicit timezone if required. This method implements the XPath comparison semantics.- Specified by:
compareToin classCalendarValue
-
getComparisonKey
Get a comparison key for this value. Two values are equal if and only if they their comparison keys are equal- Specified by:
getComparisonKeyin classCalendarValue
-
equals
Description copied from class:ValueCompare 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. -
hashCode
-
add
Add a duration to a date- Specified by:
addin classCalendarValue- 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 SecondsDurationValue subtract(CalendarValue other, XPathContext context) throws XPathException Determine the difference between two points in time, as a duration- Overrides:
subtractin classCalendarValue- Parameters:
other- the other point in timecontext-- Returns:
- the duration as an xdt:dayTimeDuration
- Throws:
XPathException- for example if one value is a date and the other is a time
-
getJulianDayNumber
public static int getJulianDayNumber(int year, int month, int day) Calculate the Julian day number at 00:00 on a given date. This algorithm is taken from http://vsg.cape.com/~pbaum/date/jdalg.htm and http://vsg.cape.com/~pbaum/date/jdalg2.htm (adjusted to handle BC dates correctly) -
dateFromJulianDayNumber
Get the Gregorian date corresponding to a particular Julian day number. The algorithm is taken from http://www.hermetic.ch/cal_stud/jdn.htm#comp- Returns:
- a DateValue with no timezone information set
-
getDayWithinYear
public static final int getDayWithinYear(int year, int month, int day) Get the ordinal day number within the year (1 Jan = 1, 1 Feb = 32, etc) -
getDayOfWeek
public static final int getDayOfWeek(int year, int month, int day) Get the day of the week. The days of the week are numbered from 1 (Monday) to 7 (Sunday) -
getWeekNumber
public static final int getWeekNumber(int year, int month, int day) Get the ISO week number for a given date. The days of the week are numbered from 1 (Monday) to 7 (Sunday), and week 1 in any calendar year is the week (from Monday to Sunday) that includes the first Thursday of that year -
getWeekNumberWithinMonth
public static final int getWeekNumberWithinMonth(int year, int month, int day) Get the week number within a month. This is required for the XSLT format-date() function, and the rules are not entirely clear. The days of the week are numbered from 1 (Monday) to 7 (Sunday), and by analogy with the ISO week number, we consider that week 1 in any calendar month is the week (from Monday to Sunday) that includes the first Thursday of that month. Unlike the ISO week number, we put the previous days in week zero. -
main
-