Uses of Interface
org.threeten.bp.temporal.TemporalAdjuster

Packages that use TemporalAdjuster
org.threeten.bp The main API for dates, times, instants, and durations. 
org.threeten.bp.chrono Support for calendar systems other than the default ISO. 
org.threeten.bp.jdk8 Simulates JDK 8 features on JDK 7. 
org.threeten.bp.temporal Access to date and time using fields and units. 
 

Uses of TemporalAdjuster in org.threeten.bp
 

Classes in org.threeten.bp that implement TemporalAdjuster
 class DayOfWeek
          A day-of-week, such as 'Tuesday'.
 class Instant
          An instantaneous point on the time-line.
 class LocalDate
          A date without a time-zone in the ISO-8601 calendar system, such as 2007-12-03.
 class LocalDateTime
          A date-time without a time-zone in the ISO-8601 calendar system, such as 2007-12-03T10:15:30.
 class LocalTime
          A time without time-zone in the ISO-8601 calendar system, such as 10:15:30.
 class Month
          A month-of-year, such as 'July'.
 class MonthDay
          A month-day in the ISO-8601 calendar system, such as --12-03.
 class OffsetDateTime
          A date-time with an offset from UTC/Greenwich in the ISO-8601 calendar system, such as 2007-12-03T10:15:30+01:00.
 class OffsetTime
          A time with an offset from UTC/Greenwich in the ISO-8601 calendar system, such as 10:15:30+01:00.
 class Year
          A year in the ISO-8601 calendar system, such as 2007.
 class YearMonth
          A year-month in the ISO-8601 calendar system, such as 2007-12.
 class ZoneOffset
          A time-zone offset from Greenwich/UTC, such as +02:00.
 

Methods in org.threeten.bp with parameters of type TemporalAdjuster
 ZonedDateTime ZonedDateTime.with(TemporalAdjuster adjuster)
          Returns an adjusted copy of this date-time.
 YearMonth YearMonth.with(TemporalAdjuster adjuster)
          Returns an adjusted copy of this year-month.
 Year Year.with(TemporalAdjuster adjuster)
          Returns an adjusted copy of this year.
 OffsetTime OffsetTime.with(TemporalAdjuster adjuster)
          Returns an adjusted copy of this time.
 OffsetDateTime OffsetDateTime.with(TemporalAdjuster adjuster)
          Returns an adjusted copy of this date-time.
 LocalTime LocalTime.with(TemporalAdjuster adjuster)
          Returns an adjusted copy of this time.
 LocalDateTime LocalDateTime.with(TemporalAdjuster adjuster)
          Returns an adjusted copy of this date-time.
 LocalDate LocalDate.with(TemporalAdjuster adjuster)
          Returns an adjusted copy of this date.
 Instant Instant.with(TemporalAdjuster adjuster)
          Returns an adjusted copy of this instant.
 

Uses of TemporalAdjuster in org.threeten.bp.chrono
 

Subinterfaces of TemporalAdjuster in org.threeten.bp.chrono
 interface Era
          An era of the time-line.
 

Classes in org.threeten.bp.chrono that implement TemporalAdjuster
 class ChronoLocalDate
          A date without time-of-day or time-zone in an arbitrary chronology, intended for advanced globalization use cases.
 class ChronoLocalDateTime<D extends ChronoLocalDate>
          A date-time without a time-zone in an arbitrary chronology, intended for advanced globalization use cases.
 class HijrahDate
          A date in the Hijrah calendar system.
 class HijrahEra
          An era in the Hijrah calendar system.
 class IsoEra
          An era in the ISO calendar system.
 class JapaneseDate
          A date in the Japanese Imperial calendar system.
 class JapaneseEra
          An era in the Japanese Imperial calendar system.
 class MinguoDate
          A date in the Minguo calendar system.
 class MinguoEra
          An era in the Minguo calendar system.
 class ThaiBuddhistDate
          A date in the Thai Buddhist calendar system.
 class ThaiBuddhistEra
          An era in the Thai Buddhist calendar system.
 

Methods in org.threeten.bp.chrono with parameters of type TemporalAdjuster
 ThaiBuddhistDate ThaiBuddhistDate.with(TemporalAdjuster adjuster)
           
 MinguoDate MinguoDate.with(TemporalAdjuster adjuster)
           
 JapaneseDate JapaneseDate.with(TemporalAdjuster adjuster)
           
 HijrahDate HijrahDate.with(TemporalAdjuster adjuster)
           
 ChronoZonedDateTime<D> ChronoZonedDateTime.with(TemporalAdjuster adjuster)
           
 ChronoLocalDateTime<D> ChronoLocalDateTime.with(TemporalAdjuster adjuster)
           
 ChronoLocalDate ChronoLocalDate.with(TemporalAdjuster adjuster)
           
 

Uses of TemporalAdjuster in org.threeten.bp.jdk8
 

Classes in org.threeten.bp.jdk8 that implement TemporalAdjuster
 class DefaultInterfaceEra
          A temporary class providing implementations that will become default interface methods once integrated into JDK 8.
 

Methods in org.threeten.bp.jdk8 with parameters of type TemporalAdjuster
 Temporal DefaultInterfaceTemporal.with(TemporalAdjuster adjuster)
           
 

Uses of TemporalAdjuster in org.threeten.bp.temporal
 

Methods in org.threeten.bp.temporal that return TemporalAdjuster
static TemporalAdjuster TemporalAdjusters.dayOfWeekInMonth(int ordinal, DayOfWeek dayOfWeek)
          Returns the day-of-week in month adjuster, which returns a new date in the same month with the ordinal day-of-week.
static TemporalAdjuster TemporalAdjusters.firstDayOfMonth()
          Returns the "first day of month" adjuster, which returns a new date set to the first day of the current month.
static TemporalAdjuster TemporalAdjusters.firstDayOfNextMonth()
          Returns the "first day of next month" adjuster, which returns a new date set to the first day of the next month.
static TemporalAdjuster TemporalAdjusters.firstDayOfNextYear()
          Returns the "first day of next year" adjuster, which returns a new date set to the first day of the next year.
static TemporalAdjuster TemporalAdjusters.firstDayOfYear()
          Returns the "first day of year" adjuster, which returns a new date set to the first day of the current year.
static TemporalAdjuster TemporalAdjusters.firstInMonth(DayOfWeek dayOfWeek)
          Returns the first in month adjuster, which returns a new date in the same month with the first matching day-of-week.
static TemporalAdjuster TemporalAdjusters.lastDayOfMonth()
          Returns the "last day of month" adjuster, which returns a new date set to the last day of the current month.
static TemporalAdjuster TemporalAdjusters.lastDayOfYear()
          Returns the "last day of year" adjuster, which returns a new date set to the last day of the current year.
static TemporalAdjuster TemporalAdjusters.lastInMonth(DayOfWeek dayOfWeek)
          Returns the last in month adjuster, which returns a new date in the same month with the last matching day-of-week.
static TemporalAdjuster TemporalAdjusters.next(DayOfWeek dayOfWeek)
          Returns the next day-of-week adjuster, which adjusts the date to the first occurrence of the specified day-of-week after the date being adjusted.
static TemporalAdjuster TemporalAdjusters.nextOrSame(DayOfWeek dayOfWeek)
          Returns the next-or-same day-of-week adjuster, which adjusts the date to the first occurrence of the specified day-of-week after the date being adjusted unless it is already on that day in which case the same object is returned.
static TemporalAdjuster TemporalAdjusters.previous(DayOfWeek dayOfWeek)
          Returns the previous day-of-week adjuster, which adjusts the date to the first occurrence of the specified day-of-week before the date being adjusted.
static TemporalAdjuster TemporalAdjusters.previousOrSame(DayOfWeek dayOfWeek)
          Returns the previous-or-same day-of-week adjuster, which adjusts the date to the first occurrence of the specified day-of-week before the date being adjusted unless it is already on that day in which case the same object is returned.
 

Methods in org.threeten.bp.temporal with parameters of type TemporalAdjuster
 Temporal Temporal.with(TemporalAdjuster adjuster)
          Returns an adjusted object of the same type as this object with the adjustment made.
 



Copyright © 2007–2015 ThreeTen.org. All rights reserved.