java.time.YearMonth 类



介绍

java.time.YearMonth 类表示 ISO-8601 日历系统中的年月,例如 2007-12。

类声明

以下是java.time.YearMonth 类的声明:

public final class YearMonth
   extends Object
      implements Temporal, TemporalAdjuster, Comparable<YearMonth>, Serializable

类方法

序号 方法及描述
1 Temporal adjustInto(Temporal temporal)

调整指定的临时对象以具有此年月。

2 LocalDate atDay(int dayOfMonth)

将此年月与一天合并以创建一个 LocalDate。

3 LocalDate atEndOfMonth()

返回一个月结束时的 LocalDate。

4 int compareTo(YearMonth other)

将此年月与另一个年月进行比较。

5 boolean equals(Object otherYearMonth)

检查此 YearMonth 是否等于指定的 YearMonth。

6 String format(DateTimeFormatter formatter)

使用指定的格式化程序格式化此年月。

7 static YearMonth from(TemporalAmount amount)

从时间量获取 YearMonth 实例。

8 int get(TemporalField field)

将此年月中指定字段的值作为 int 获取。

9 long getLong(TemporalField field)

将请求的单位的值作为长整型获取。

10 Month getMonth()

使用 Month 枚举获取月份字段。

11 int getMonthValue()

获取月份字段,范围为 1 到 12。

12 int getYear()

获取年份字段。

13 int hashCode()

此 YearMonth 的哈希码。

14 boolean isAfter(YearMonth other)

检查此年月是否在指定的年月之后。

15 boolean isBefore(YearMonth other)

检查此年月是否在指定的年月之前。

16 boolean isLeapYear()

根据 ISO 预期日历系统规则检查年份是否为闰年。

17 boolean isLeap(long year)

根据 ISO 预期日历系统规则检查年份是否为闰年。

18 boolean isSupported(TemporalField field)

检查是否支持指定的字段。

19 boolean isSupported(TemporalUnit unit)

检查是否支持指定的单位。

20 boolean isValidDay(int dayOfMonth)

检查此年月中的某天是否有效。

21 int lengthOfMonth()

返回月份的长度,考虑年份。

22 int lengthOfYear()

返回年份的长度。

23 YearMonth minus(long amountToSubtract, TemporalUnit unit)

返回减去指定量后的此年份的副本。

24 YearMonth minus(TemporalAmount amountToSubtract)

返回减去指定 YearMonth 后的此 YearMonth 的副本。

25 YearMonth minusMonths(long monthsToSubtract)

返回减去指定月份后的此 YearMonth 的副本。

26 YearMonth minusYears(long yearsToSubtract)

返回减去指定年份后的此 YearMonth 的副本。

27 static YearMonth now()

从默认时区的系统时钟获取当前年月。

28 static YearMonth now(Clock clock)

从指定的时钟获取当前年月。

29 static YearMonth now(ZoneId zone)

从指定时区的系统时钟获取当前年月。

30 static YearMonth of(int years, int month)

从年份和月份获取 YearMonth 实例。

31 static YearMonth of(int years, Month month)

从年份和月份获取 YearMonth 实例。

32 static YearMonth parse(CharSequence text)

从文本字符串(例如 2007-12)获取 YearMonth。

33 static YearMonth parse(CharSequence text, DateTimeFormatter formatter)

使用特定格式化程序从文本字符串获取 YearMonth 实例。

34 YearMonth plus(long amountToAdd, TemporalUnit unit)

返回添加指定 YearMonth 后的此 YearMonth 的副本。

35 YearMonth plus(TemporalAmount amountToAdd)

返回添加指定 YearMonth 后的此 YearMonth 的副本。

36 YearMonth plusMonths(long monthsToAdd)

返回添加指定月份后的此 YearMonth 的副本。

37 YearMonth plusYears(long yearsToAdd)

返回添加指定年份后的此 YearMonth 的副本。

38 <R> R query(TemporalQuery<R> query)

使用指定的查询查询此年月。

39 ValueRange range(TemporalField field)

获取指定字段的有效值范围。

40 String toString()

将此年月输出为字符串。

41 long until(Temporal endExclusive, TemporalUnit unit)

计算以指定单位表示的到另一个年月的持续时间。

42 YearMonth with(TemporalAdjuster adjuster)

返回此年月的调整后的副本。

43 YearMonth with(TemporalField field, long newValue)

返回将指定字段设置为新值的此年月的副本。

44 YearMonth withMonth(int month)

返回更改月份后的此 YearMonth 的副本。

45 YearMonth withYear(int year)

返回更改年份后的此 YearMonth 的副本。

继承的方法

此类继承自以下类的方法:

  • java.lang.Object
广告