Uses of Class
java.time.MonthDay
-
Packages that use MonthDay 软件包 描述 java.time 日期,时间,瞬间和持续时间的主要API。 -
-
Uses of MonthDay in java.time
Methods in java.time that return MonthDay 变量和类型 方法 描述 static MonthDay
MonthDay. from(TemporalAccessor temporal)
从时态对象获得MonthDay
的实例。static MonthDay
MonthDay. now()
从默认时区中的系统时钟获取当前月 - 日。static MonthDay
MonthDay. now(Clock clock)
从指定的时钟获得当前的月 - 日。static MonthDay
MonthDay. now(ZoneId zone)
从指定时区的系统时钟获取当前月 - 日。static MonthDay
MonthDay. of(int month, int dayOfMonth)
获得MonthDay
的实例。static MonthDay
MonthDay. of(Month month, int dayOfMonth)
获得MonthDay
的实例。static MonthDay
MonthDay. parse(CharSequence text)
从文本字符串(例如--12-03
获取MonthDay
的实例。static MonthDay
MonthDay. parse(CharSequence text, DateTimeFormatter formatter)
使用特定格式化程序从文本字符串中获取MonthDay
的实例。MonthDay
MonthDay. with(Month month)
返回此MonthDay
的副本,其中年份已更改。MonthDay
MonthDay. withDayOfMonth(int dayOfMonth)
返回此MonthDay
的副本,并更改日期。MonthDay
MonthDay. withMonth(int month)
返回此MonthDay
的副本,其中年份已更改。Methods in java.time with parameters of type MonthDay 变量和类型 方法 描述 LocalDate
Year. atMonthDay(MonthDay monthDay)
结合今年和一个月的日子创建一个LocalDate
。int
MonthDay. compareTo(MonthDay other)
将这个月份的日期与另一个月份的日期进行比较。boolean
MonthDay. isAfter(MonthDay other)
检查此月 - 日是否在指定的月 - 日之后。boolean
MonthDay. isBefore(MonthDay other)
检查此月 - 日是否在指定的月 - 日之前。boolean
Year. isValidMonthDay(MonthDay monthDay)
检查月份是否对今年有效。
-