Uses of Interface
javax.time.calendar.TimeAdjuster
-
Packages that use TimeAdjuster Package Description javax.time.calendar Provides classes to manage the human time scale including date, time, date-time and time-zone representations. -
-
Uses of TimeAdjuster in javax.time.calendar
Classes in javax.time.calendar that implement TimeAdjuster Modifier and Type Class Description class
LocalDateTime
A date-time without a time-zone in the ISO-8601 calendar system, such as2007-12-03T10:15:30
.class
LocalTime
A time without time-zone in the ISO-8601 calendar system, such as10:15:30
.class
OffsetDateTime
A date-time with a zone offset from UTC in the ISO-8601 calendar system, such as2007-12-03T10:15:30+01:00
.class
OffsetTime
A time with a zone offset from UTC in the ISO-8601 calendar system, such as10:15:30+01:00
.Methods in javax.time.calendar with parameters of type TimeAdjuster Modifier and Type Method Description LocalDateTime
LocalDateTime. with(TimeAdjuster adjuster)
Returns a copy of thisLocalDateTime
with the time altered using the adjuster.LocalTime
LocalTime. with(TimeAdjuster adjuster)
Returns a copy of thisLocalTime
with the time altered using the adjuster.OffsetDateTime
OffsetDateTime. with(TimeAdjuster adjuster)
Returns a copy of this OffsetDateTime with the time altered using the adjuster.OffsetTime
OffsetTime. with(TimeAdjuster adjuster)
Returns a copy of thisOffsetTime
with the time altered using the adjuster.ZonedDateTime
ZonedDateTime. with(TimeAdjuster adjuster)
Returns a copy of thisZonedDateTime
with the time altered using the adjuster.ZonedDateTime
ZonedDateTime. with(TimeAdjuster adjuster, ZoneResolver resolver)
Returns a copy of thisZonedDateTime
with the time altered using the adjuster, providing a resolver to handle an invalid date-time.
-