Uses of Enum Class
java.time.Month
Package
Description
The main API for dates, times, instants, and durations.
Support for time-zones and their rules.
-
Uses of Month in java.time
Modifier and TypeMethodDescriptionMonth.firstMonthOfQuarter()
Gets the month corresponding to the first month of this quarter.static Month
Month.from
(TemporalAccessor temporal) Obtains an instance ofMonth
from a temporal object.LocalDate.getMonth()
Gets the month-of-year field using theMonth
enum.LocalDateTime.getMonth()
Gets the month-of-year field using theMonth
enum.MonthDay.getMonth()
Gets the month-of-year field using theMonth
enum.OffsetDateTime.getMonth()
Gets the month-of-year field using theMonth
enum.YearMonth.getMonth()
Gets the month-of-year field using theMonth
enum.ZonedDateTime.getMonth()
Gets the month-of-year field using theMonth
enum.Month.minus
(long months) Returns the month-of-year that is the specified number of months before this one.static Month
Month.of
(int month) Obtains an instance ofMonth
from anint
value.Month.plus
(long months) Returns the month-of-year that is the specified number of months after this one.static Month
Returns the enum constant of this class with the specified name.static Month[]
Month.values()
Returns an array containing the constants of this enum class, in the order they are declared.Modifier and TypeMethodDescriptionCombines this year with a month to create aYearMonth
.static LocalDate
Obtains an instance ofLocalDate
from a year, month and day.static LocalDateTime
Obtains an instance ofLocalDateTime
from year, month, day, hour and minute, setting the second and nanosecond to zero.static LocalDateTime
Obtains an instance ofLocalDateTime
from year, month, day, hour, minute and second, setting the nanosecond to zero.static LocalDateTime
LocalDateTime.of
(int year, Month month, int dayOfMonth, int hour, int minute, int second, int nanoOfSecond) Obtains an instance ofLocalDateTime
from year, month, day, hour, minute, second and nanosecond.static MonthDay
Obtains an instance ofMonthDay
.static YearMonth
Obtains an instance ofYearMonth
from a year and month.Returns a copy of thisMonthDay
with the month-of-year altered. -
Uses of Month in java.time.zone
Modifier and TypeMethodDescriptionZoneOffsetTransitionRule.getMonth()
Gets the month of the transition.Modifier and TypeMethodDescriptionstatic ZoneOffsetTransitionRule
ZoneOffsetTransitionRule.of
(Month month, int dayOfMonthIndicator, DayOfWeek dayOfWeek, LocalTime time, boolean timeEndOfDay, ZoneOffsetTransitionRule.TimeDefinition timeDefinition, ZoneOffset standardOffset, ZoneOffset offsetBefore, ZoneOffset offsetAfter) Obtains an instance defining the yearly rule to create transitions between two offsets.