Open In App

FormatStyle values() method in Java with Examples

Last Updated : 18 Aug, 2021
Comments
Improve
Suggest changes
Like Article
Like
Report

The values() method of FormatStyle enum is used to an array containing the units of this FormatStyle, in the order, they are declared.
Syntax: 
 

public static FormatStyle[] 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 FormatStyle.values() method: 
Program 1: 
 


Output: 
FULL
LONG
MEDIUM
SHORT

 

Program 2: 
 


Output: 
FormatStyle length: 4

 

References: https://docs.oracle.com/javase/10/docs/api/java/time/format/FormatStyle.html
 


Next Article

Similar Reads