Open In App

FormatStyle values() method in Java with Examples

Improve
Improve
Like Article
Like
Save
Share
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: 
 

Java




// Java program to demonstrate
// FormatStyle.values() method
 
import java.time.format.FormatStyle;
 
public class GFG {
    public static void main(String[] args)
    {
 
        // Get FormatStyle instance
        FormatStyle formatStyle
            = FormatStyle.valueOf("FULL");
 
        // Get the constants using values()
        FormatStyle[] array
            = formatStyle.values();
 
        // Print the values
        for (int i = 0; i < array.length; i++)
            System.out.println(array[i]);
    }
}


Output: 

FULL
LONG
MEDIUM
SHORT

 

Program 2: 
 

Java




// Java program to demonstrate
// FormatStyle.values() method
 
import java.time.format.FormatStyle;
 
public class GFG {
    public static void main(String[] args)
    {
 
        // Get FormatStyle instance
        FormatStyle formatStyle
            = FormatStyle.valueOf("FULL");
 
        // Get the constants using values()
        FormatStyle[] array
            = formatStyle.values();
 
        // Print the values
        System.out.println("FormatStyle length: "
                           + array.length);
    }
}


Output: 

FormatStyle length: 4

 

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



Last Updated : 18 Aug, 2021
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads