TextStyle asStandalone() method in Java with Examples

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()



