Open In App

TextStyle asNormal() method in Java with Examples

Last Updated : 29 Jan, 2020
Improve
Improve
Like Article
Like
Save
Share
Report

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



Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads