Open In App

ChronoField values() method in Java with Examples

Last Updated : 29 Jan, 2020
Comments
Improve
Suggest changes
Like Article
Like
Report
The values() method of ChronoField enum is used to an array containing the constants of this enum type, in the order, they are declared. Syntax:
public static ChronoField[] values()
Parameters: This method accepts nothing. Return value: This method returns an array containing the constants of this enum type, in the order, they are declared. Below programs illustrate the ChronoField.values() method: Program 1:
Output:
NanoOfSecond
NanoOfDay
MicroOfSecond
MicroOfDay
MilliOfSecond
MilliOfDay
SecondOfMinute
SecondOfDay
MinuteOfHour
MinuteOfDay
HourOfAmPm
ClockHourOfAmPm
HourOfDay
ClockHourOfDay
AmPmOfDay
DayOfWeek
AlignedDayOfWeekInMonth
AlignedDayOfWeekInYear
DayOfMonth
DayOfYear
EpochDay
AlignedWeekOfMonth
AlignedWeekOfYear
MonthOfYear
ProlepticMonth
YearOfEra
Year
Era
InstantSeconds
OffsetSeconds
Program 2:
Output:
ChronoField length:30
References: https://docs.oracle.com/javase/10/docs/api/java/time/temporal/ChronoField.html#values()

Next Article

Similar Reads