Duration | newDuration(boolean isPositive, int years, int months, int days, int hours, int minutes, int seconds) - Returns a new duration by specifying the individual components.
|
abstract Duration | newDuration(boolean isPositive, BigInteger years, BigInteger months, BigInteger days, BigInteger hours, BigInteger minutes, BigDecimal seconds) - Returns a new duration by specifying the individual components.
|
abstract Duration | newDuration(String lexicalRepresentation) - Returns a new duration from its string representation.
|
abstract Duration | newDuration(long durationInMilliSeconds) - Returns a new duration.
|
Duration | newDurationDayTime(boolean isPositive, int days, int hours, int minutes, int seconds) - Returns a new dayTimeDuration by specifying the individual components.
|
Duration | newDurationDayTime(boolean isPositive, BigInteger days, BigInteger hours, BigInteger minutes, BigInteger seconds) - Returns a new dayTimeDuration by specifying the individual components.
|
Duration | newDurationDayTime(String lexicalRepresentation) - Returns a new dayTimeDuration from its string representation.
|
Duration | newDurationDayTime(long durationInMilliseconds) - Returns a new dayTimeDuration.
|
Duration | newDurationYearMonth(boolean isPositive, int years, int months) - Returns a new yearMonthDuration by specifying the individual components.
|
Duration | newDurationYearMonth(boolean isPositive, BigInteger years, BigInteger months) - Returns a new yearMonthDuration by specifying the individual components.
|
Duration | newDurationYearMonth(String lexicalRepresentation) - Returns a new yearMonthDuration from its string representation.
|
Duration | newDurationYearMonth(long durationInMilliseconds) - Returns a new yearMonthDuration.
|
static DatatypeFactory | newInstance() - Returns a new factory instance.
|
abstract XMLGregorianCalendar | newXMLGregorianCalendar() - Returns a new XMLGregorianCalendar with no fields initialized.
|
XMLGregorianCalendar | newXMLGregorianCalendar(int year, int month, int day, int hour, int minute, int second, int millisecond, int timezone) - Returns a new XMLGregorianCalendar with the specified components.
|
abstract XMLGregorianCalendar | newXMLGregorianCalendar(String lexicalRepresentation) - Returns a new XMLGregorianCalendar from a string representation.
|
abstract XMLGregorianCalendar | newXMLGregorianCalendar(BigInteger year, int month, int day, int hour, int minute, int second, BigDecimal fractionalSecond, int timezone) - Returns a new XMLGregorianCalendar with the specified components.
|
abstract XMLGregorianCalendar | newXMLGregorianCalendar(GregorianCalendar cal) - Returns a new XMLGregorianCalendar based on the specified Gregorian
calendar.
|
XMLGregorianCalendar | newXMLGregorianCalendarDate(int year, int month, int day, int timezone) - Returns a new XMLGregorianCalendar with the specified components.
|
XMLGregorianCalendar | newXMLGregorianCalendarTime(int hours, int minutes, int seconds, int timezone) - Returns a new XMLGregorianCalendar with the specified components.
|
XMLGregorianCalendar | newXMLGregorianCalendarTime(int hours, int minutes, int seconds, int milliseconds, int timezone) - Returns a new XMLGregorianCalendar with the specified components.
|
XMLGregorianCalendar | newXMLGregorianCalendarTime(int hours, int minutes, int seconds, BigDecimal fractionalSecond, int timezone) - Returns a new XMLGregorianCalendar with the specified components.
|