Saturday, January 11, 2025
Google search engine
HomeLanguagesJavaTextStyle asStandalone() method in Java with Examples

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

Dominic Rubhabha-Wardslaus
Dominic Rubhabha-Wardslaushttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Recent Comments