Uses of Interface
java.time.temporal.TemporalAdjuster
-
Packages that use TemporalAdjuster 软件包 描述 java.time 日期,时间,瞬间和持续时间的主要API。java.time.chrono 除默认ISO之外的日历系统的通用API。java.time.temporal 使用字段和单位以及日期时间调整器访问日期和时间。 -
-
Uses of TemporalAdjuster in java.time
Classes in java.time that implement TemporalAdjuster 变量和类型 类 描述 class
DayOfWeek
一周中的某一天,例如“星期二”。class
Instant
时间线上的瞬时点。class
LocalDate
ISO-2007-12-03
,例如2007-12-03
。class
LocalDateTime
ISO-2007-12-03T10:15:30
,例如2007-12-03T10:15:30
。class
LocalTime
ISO-10:15:30
,例如10:15:30
。class
Month
一个月,例如'七月'。class
MonthDay
ISO---12-03
- 日,例如--12-03
。class
OffsetDateTime
在ISO-2007-12-03T10:15:30+01:00
UTC / Greenwich偏移的日期时间,例如2007-12-03T10:15:30+01:00
。class
OffsetTime
在ISO-10:15:30+01:00
UTC / Greenwich偏移的时间,例如10:15:30+01:00
。class
Year
ISO-2007
,例如2007
。class
YearMonth
ISO-2007-12
,例如2007-12
。class
ZoneOffset
与格林威治/ UTC相关的时区偏移,例如+02:00
。Methods in java.time with parameters of type TemporalAdjuster 变量和类型 方法 描述 Instant
Instant. with(TemporalAdjuster adjuster)
返回此瞬间的调整副本。LocalDate
LocalDate. with(TemporalAdjuster adjuster)
返回此日期的调整副本。LocalDateTime
LocalDateTime. with(TemporalAdjuster adjuster)
返回此日期时间的调整副本。LocalTime
LocalTime. with(TemporalAdjuster adjuster)
返回此时的调整副本。OffsetDateTime
OffsetDateTime. with(TemporalAdjuster adjuster)
返回此日期时间的调整副本。OffsetTime
OffsetTime. with(TemporalAdjuster adjuster)
返回此时的调整副本。Year
Year. with(TemporalAdjuster adjuster)
返回今年的调整副本。YearMonth
YearMonth. with(TemporalAdjuster adjuster)
返回此年度的调整副本。ZonedDateTime
ZonedDateTime. with(TemporalAdjuster adjuster)
返回此日期时间的调整副本。 -
Uses of TemporalAdjuster in java.time.chrono
Subinterfaces of TemporalAdjuster in java.time.chrono 变量和类型 接口 描述 interface
ChronoLocalDate
用于高级全球化用例的任意时间表中没有时间或时区的日期。interface
ChronoLocalDateTime<D extends ChronoLocalDate>
用于高级全球化用例的任意时间顺序中没有时区的日期时间。interface
Era
时间线的时代。Classes in java.time.chrono that implement TemporalAdjuster 变量和类型 类 描述 class
HijrahDate
Hijrah日历系统中的日期。class
HijrahEra
Hijrah日历系统的一个时代。class
IsoEra
ISO日历系统的一个时代。class
JapaneseDate
日本帝国日历系统中的日期。class
JapaneseEra
日本帝国历法系统的一个时代。class
MinguoDate
民国历法系统的约会。class
MinguoEra
民国历法系统的一个时代。class
ThaiBuddhistDate
泰国佛教日历系统中的约会。class
ThaiBuddhistEra
泰国佛教历法系统的一个时代。Methods in java.time.chrono with parameters of type TemporalAdjuster 变量和类型 方法 描述 default ChronoLocalDate
ChronoLocalDate. with(TemporalAdjuster adjuster)
返回与此对象相同类型的调整对象,并进行调整。default ChronoLocalDateTime<D>
ChronoLocalDateTime. with(TemporalAdjuster adjuster)
返回与此对象相同类型的调整对象,并进行调整。default ChronoZonedDateTime<D>
ChronoZonedDateTime. with(TemporalAdjuster adjuster)
返回与此对象相同类型的调整对象,并进行调整。HijrahDate
HijrahDate. with(TemporalAdjuster adjuster)
返回与此对象相同类型的调整对象,并进行调整。JapaneseDate
JapaneseDate. with(TemporalAdjuster adjuster)
返回与此对象相同类型的调整对象,并进行调整。MinguoDate
MinguoDate. with(TemporalAdjuster adjuster)
返回与此对象相同类型的调整对象,并进行调整。ThaiBuddhistDate
ThaiBuddhistDate. with(TemporalAdjuster adjuster)
返回与此对象相同类型的调整对象,并进行调整。 -
Uses of TemporalAdjuster in java.time.temporal
Methods in java.time.temporal that return TemporalAdjuster 变量和类型 方法 描述 static TemporalAdjuster
TemporalAdjusters. dayOfWeekInMonth(int ordinal, DayOfWeek dayOfWeek)
返回月份调整器中的星期几,它根据月份返回序号星期几的新日期。static TemporalAdjuster
TemporalAdjusters. firstDayOfMonth()
返回“第一天的月份”调整程序,它返回设置为当前月份第一天的新日期。static TemporalAdjuster
TemporalAdjusters. firstDayOfNextMonth()
返回“下个月的第一天”调整程序,它返回设置为下个月第一天的新日期。static TemporalAdjuster
TemporalAdjusters. firstDayOfNextYear()
返回“明年的第一天”调整器,它将新的日期设置为下一年的第一天。static TemporalAdjuster
TemporalAdjusters. firstDayOfYear()
返回“年中的第一天”调整程序,它返回设置为当前年度第一天的新日期。static TemporalAdjuster
TemporalAdjusters. firstInMonth(DayOfWeek dayOfWeek)
返回月份调整器中的第一个,它在同一个月中返回第一个匹配的星期几的新日期。static TemporalAdjuster
TemporalAdjusters. lastDayOfMonth()
返回“最后一天”调整器,它返回设置为当前月份最后一天的新日期。static TemporalAdjuster
TemporalAdjusters. lastDayOfYear()
返回“年末的最后一天”调整器,它返回设置为当前年度最后一天的新日期。static TemporalAdjuster
TemporalAdjusters. lastInMonth(DayOfWeek dayOfWeek)
返回月份调整器中的最后一个,它返回同一个月中与上一个匹配的星期几相关的新日期。static TemporalAdjuster
TemporalAdjusters. next(DayOfWeek dayOfWeek)
返回下一个星期几调整器,它将日期调整为调整日期后指定星期几的第一次出现。static TemporalAdjuster
TemporalAdjusters. nextOrSame(DayOfWeek dayOfWeek)
返回下一个或相同的星期几调整器,它将日期调整为调整日期后指定星期几的第一次出现,除非它已经在那一天,在这种情况下返回相同的对象。static TemporalAdjuster
TemporalAdjusters. ofDateAdjuster(UnaryOperator<LocalDate> dateBasedAdjuster)
获得包裹日期调整器的TemporalAdjuster
。static TemporalAdjuster
TemporalAdjusters. previous(DayOfWeek dayOfWeek)
返回上一周的调整程序,该调整程序将日期调整为调整日期之前指定的星期几的第一次出现。static TemporalAdjuster
TemporalAdjusters. previousOrSame(DayOfWeek dayOfWeek)
返回上一个或同一个星期几的调整器,它将日期调整为调整日期之前指定的星期几的第一次出现,除非它已经在那一天,在这种情况下返回相同的对象。Methods in java.time.temporal with parameters of type TemporalAdjuster 变量和类型 方法 描述 default Temporal
Temporal. with(TemporalAdjuster adjuster)
返回与此对象相同类型的调整对象,并进行调整。
-