TextStyle asNormal() method in Java with Examples

The asNormal() method of TextStyle enum is used to return the normal style with the same size of this TextStyle object.

Syntax:

public TextStyle asNormal()

Parameters: This method accepts nothing.

Return value: This method returns the normal style with the same size.

Below programs illustrate the TextStyle.asNormal() method:
Program 1:




// Java program to demonstrate
// TextStyle.asNormal() method
  
import java.time.format.TextStyle;
  
public class GFG {
    public static void main(String[] args)
    {
  
        // get TextStyle
        TextStyle style
            = TextStyle.valueOf("SHORT_STANDALONE");
  
        // apply asNormal()
        TextStyle asNormalAttribute
            = style.asNormal();
  
        // print
        System.out.println(
            "Normal TextStyle :"
            + asNormalAttribute);
    }
}


Output:

Normal TextStyle :SHORT

Program 2:




// Java program to demonstrate
// TextStyle.asNormal() method
  
import java.time.format.TextStyle;
  
public class GFG {
    public static void main(String[] args)
    {
  
        // get TextStyle
        TextStyle style
            = TextStyle.valueOf("FULL_STANDALONE");
  
        // apply asNormal()
        TextStyle asNormalAttribute
            = style.asNormal();
  
        // print
        System.out.println("Normal TextStyle :"
                           + asNormalAttribute);
    }
}


Output:

Normal TextStyle :FULL

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

Related Articles

Leave a Reply

Your email address will not be published. Required fields are marked *

Back to top button