Uses of Interface
javax.time.calendar.TimeAdjuster

Packages that use TimeAdjuster
Package
Description
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
    final class 
    A date-time without a time-zone in the ISO-8601 calendar system, such as 2007-12-03T10:15:30.
    final class 
    A time without time-zone in the ISO-8601 calendar system, such as 10:15:30.
    final class 
    A date-time with a zone offset from UTC in the ISO-8601 calendar system, such as 2007-12-03T10:15:30+01:00.
    final class 
    A time with a zone offset from UTC in the ISO-8601 calendar system, such as 10:15:30+01:00.
    Methods in javax.time.calendar with parameters of type TimeAdjuster
    Modifier and Type
    Method
    Description
    LocalDateTime.with(TimeAdjuster adjuster)
    Returns a copy of this LocalDateTime with the time altered using the adjuster.
    LocalTime.with(TimeAdjuster adjuster)
    Returns a copy of this LocalTime with the time altered using the adjuster.
    OffsetDateTime.with(TimeAdjuster adjuster)
    Returns a copy of this OffsetDateTime with the time altered using the adjuster.
    OffsetTime.with(TimeAdjuster adjuster)
    Returns a copy of this OffsetTime with the time altered using the adjuster.
    ZonedDateTime.with(TimeAdjuster adjuster)
    Returns a copy of this ZonedDateTime with the time altered using the adjuster.
    ZonedDateTime.with(TimeAdjuster adjuster, ZoneResolver resolver)
    Returns a copy of this ZonedDateTime with the time altered using the adjuster, providing a resolver to handle an invalid date-time.