Class: Duration
Represents a duration of time, which can be positive or negative. This is an abstract class and cannot be instantiated directly. Use static methods to create Duration instances.
Abstract
Properties
days
days: int
The number of days in the duration.
Example
duration = Duration.ofDays(5)
print(duration.days) # Output: 5
hours
hours: int
The number of hours in the duration.
Example
duration = Duration.ofHours(12)
print(duration.hours) # Output: 12
minutes
minutes: int
The number of minutes in the duration.
Example
duration = Duration.ofMinutes(45)
print(duration.minutes) # Output: 45
nanos
nanos: int
The number of nanoseconds in the duration.
Example
duration = Duration.ofNano(1000)
print(duration.nanos) # Output: 1000
seconds
seconds: int
The number of seconds in the duration.
Example
duration = Duration.ofSeconds(60)
print(duration.seconds) # Output: 60
Methods
abs()
abs() -> Duration
Returns the absolute value of this duration.
Returns
Duration - A new Duration representing the absolute value of this duration.
Example
negative_duration = Duration.ofDays(-1)
absolute_duration = negative_duration.abs()
print(absolute_duration.days) # Output: 1
addTo()
addTo(temporal: Temporal) -> Temporal
Adds this duration to the given temporal object.
Parameters
- temporal: Temporal - The temporal object to add this duration to.
Returns
Temporal - A new temporal object with this duration added.
Example
duration = Duration.ofHours(2)
date = DateTime.parse("2023-01-01 00:00:00", "uuuu-MM-dd HH:mm:ss")
new_date = duration.addTo(date)
print(new_date.toString()) # Output: '2023-01-01T02:00:00.000Z'
isNegative()
isNegative() -> bool
Checks if this duration is negative.
Returns
bool - True if this duration is negative, False otherwise.
Example
negative_duration = Duration.ofDays(-1)
print(negative_duration.isNegative()) # Output: True
isZero()
isZero() -> bool
Checks if this duration is zero.
Returns
bool - True if this duration is zero, False otherwise.
Example
zero_duration = Duration.ofSeconds(0)
print(zero_duration.isZero()) # Output: True
minus()
minus(duration: Duration) -> Duration
Subtracts the specified duration from this duration.
Parameters
- duration: Duration - The duration to subtract.
Returns
Duration - A new Duration representing the difference.
Example
duration1 = Duration.ofDays(2)
duration2 = Duration.ofHours(12)
difference = duration1.minus(duration2)
print(difference.days) # Output: 1
print(difference.hours) # Output: 12
minusDays()
minusDays(days: int) -> Duration
Subtracts the specified number of days from this duration.
Parameters
- days: int - The number of days to subtract.
Returns
Duration - A new Duration with the days subtracted.
Example
duration = Duration.ofDays(3)
new_duration = duration.minusDays(1)
print(new_duration.days) # Output: 2
minusHours()
minusHours(hours: int) -> Duration
Subtracts the specified number of hours from this duration.
Parameters
- hours: int - The number of hours to subtract.
Returns
Duration - A new Duration with the hours subtracted.
Example
duration = Duration.ofHours(5)
new_duration = duration.minusHours(2)
print(new_duration.hours) # Output: 3
minusMillis()
minusMillis(millis: int) -> Duration
Subtracts the specified number of milliseconds from this duration.
Parameters
- millis: int - The number of milliseconds to subtract.
Returns
Duration - A new Duration with the milliseconds subtracted.
Example
duration = Duration.ofSeconds(2)
new_duration = duration.minusMillis(500)
print(new_duration.seconds) # Output: 1
print(new_duration.nanos) # Output: 500000000
minusMinutes()
minusMinutes(minutes: int) -> Duration
Subtracts the specified number of minutes from this duration.
Parameters
- minutes: int - The number of minutes to subtract.
Returns
Duration - A new Duration with the minutes subtracted.
Example
duration = Duration.ofMinutes(60)
new_duration = duration.minusMinutes(30)
print(new_duration.minutes) # Output: 30
minusNanos()
minusNanos(nanos: int) -> Duration
Subtracts the specified number of nanoseconds from this duration.
Parameters
- nanos: int - The number of nanoseconds to subtract.
Returns
Duration - A new Duration with the nanoseconds subtracted.
Example
duration = Duration.ofNano(1000000000)
new_duration = duration.minusNanos(500000000)
print(new_duration.nanos) # Output: 500000000
minusSeconds()
minusSeconds(seconds: int) -> Duration
Subtracts the specified number of seconds from this duration.
Parameters
- seconds: int - The number of seconds to subtract.
Returns
Duration - A new Duration with the seconds subtracted.
Example
duration = Duration.ofSeconds(60)
new_duration = duration.minusSeconds(30)
print(new_duration.seconds) # Output: 30
negated()
negated() -> Duration
Returns a new Duration with the opposite sign of this duration.
Returns
Duration - A new Duration with the opposite sign.
Example
duration = Duration.ofDays(1)
negated_duration = duration.negated()
print(negated_duration.days) # Output: -1
plus()
plus(duration: Duration) -> Duration
Adds the specified duration to this duration.
Parameters
- duration: Duration - The duration to add.
Returns
Duration - A new Duration representing the sum.
Example
duration1 = Duration.ofDays(1)
duration2 = Duration.ofHours(12)
sum_duration = duration1.plus(duration2)
print(sum_duration.days) # Output: 1
print(sum_duration.hours) # Output: 12
plusDays()
plusDays(days: int) -> Duration
Adds the specified number of days to this duration.