简介
java.time.YearMonth 类表示ISO-8601日历系统中的年月,例如2007-12.
类声明
以下是 java.time.YearMonth 类的声明 :
公共最终类YearMonth extends Object 实现Temporal,TemporalAdjuster,Comparable< YearMonth>,Serializable
类方法
Sr.No . | 方法&说明 |
---|---|
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) 从a获取YearMonth的实例时间金额. |
8 | int get(TemporalField field) 以int为单位从此年份获取指定字段的值. |
9 | long getLong(TemporalField field) 获取所请求单位的值. |
10 | Month getMonth() 获取月份使用月枚举的字段. |
11 | int getMonthValue() 获取1到12之间的年份字段./p> |
12 | int getYear() 获取年份字段. |
13 | int hashCode() thi的哈希码s YearMonth. |
14 | boolean isAfter(YearMonth other) 检查此年月是否在指定的年月之后. |
15 | boolean isBefore(YearMonth other) 检查此年月是否在指定的年月之前. |
16 | boolean isLeapYear() 根据ISO符号日历系统规则检查年份是否为闰年. |
17 | boolean isLeap(long year) 根据IS,检查年份是否为闰年O proleptic日历系统规则. |
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的副本以及指定减去d个月. |
26 | YearMonth minusYears(long yearsToSubtract) 返回此YearMonth的副本,并减去指定的年份. |
27 | static YearMonth now() 从默认时区的系统时钟获得当前年月. |
28 | static YearMonth now(Clock clock) 从指定时钟获得当前年月. |
29 | static YearMonth now(ZoneId zone) 从sys获取当前年月在指定时区内的时钟. |
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) Obt使用特定格式化程序从文本字符串中查看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 | 使用指定的查询查询今年 - 月. |
39 | ValueRange range(TemporalField field) ) 获取指定字段的有效值范围. |
40 | String toString() 将此年份作为字符串输出. |
41 | long until(Temporal endExclusive, TemporalUnit unit) 计算金额按指定单位计算的直到另一年 - 月的时间. |
42 | YearMonth with(TemporalA) djuster adjuster) 返回本年度的调整副本. |
43 | YearMonth with(TemporalField field,long newValue) 返回此年月的副本,并将指定字段设置为新值. |
44 | YearMonth withMonth(int month) 返回此YearMonth的副本,其中年份已更改. |
45 | YearMonth withYear(int year) 返回此YearMonth的副本,其中年份已更改. |
继承的方法
此类继承以下类中的方法 :
Java.lang.Object