Open In App

TextStyle asStandalone() method in Java with Examples

Improve
Improve
Like Article
Like
Save
Share
Report

The asStandalone() method of TextStyle enum is used to return the stand-alone style with the same size of this TextStyle object.

Syntax:

public TextStyle asStandalone()

Parameters: This method accepts nothing.

Return value: This method returns the stand-alone style with the same size.

Below programs illustrate the TextStyle.asStandalone() method:

Program 1: 

Java




// Java program to demonstrate// TextStyle.asStandalone() methodimport java.time.format.TextStyle;public class GFG {    public static void main(String[] args)    {        // get TextStyle        TextStyle style            = TextStyle.valueOf("SHORT");        // apply asStandalone()        TextStyle asStandaloneAttribute            = style.asStandalone();        // print        System.out.println(            "Standalone TextStyle :"            + asStandaloneAttribute);    }}


Output:

Standalone TextStyle :SHORT_STANDALONE

Program 2: 

Java




// Java program to demonstrate// TextStyle.asStandalone() methodimport java.time.format.TextStyle;public class GFG {    public static void main(String[] args)    {        // get TextStyle        TextStyle style            = TextStyle.valueOf("FULL");        // apply asStandalone()        TextStyle asStandaloneAttribute            = style.asStandalone();        // print        System.out.println("Standalone TextStyle :"                           + asStandaloneAttribute);    }}


Output:

Standalone TextStyle :FULL_STANDALONE

References: https://docs.oracle.com/javase/10/docs/api/java/time/format/TextStyle.html#asStandalone()


Last Updated : 30 Jun, 2022
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads