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 Modifier and Type 方法 描述 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 Modifier and Type 方法 描述 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)
检查今年的月日是否有效。
-