The getDisplayName() method of TimeZone class in Java is used to get a particular name of this TimeZone that is easily understood by the user. The name is appropriate for presentation and display purpose.
Syntax:
public final String getDisplayName()
Parameters: The method does not take any parameters.
Return Value: The method returns the display name of the TimeZone.
Below program illustrates the working of getDisplayName() Method of TimeZone:
// Java code to illustrate getDisplayName() method import java.util.*; public class TimeZoneDemo { public static void main(String args[]) { // Creating an object of TimeZone class. TimeZone time_zone = TimeZone.getDefault(); // Displaying the display name of TimeZone System.out.println( "The TimeZone: " + time_zone.getDisplayName()); } } |
The TimeZone: Coordinated Universal Time
Attention reader! Don’t stop learning now. Get hold of all the important Java Foundation and Collections concepts with the Fundamentals of Java and Java Collections Course at a student-friendly price and become industry ready. To complete your preparation from learning a language to DS Algo and many more, please refer Complete Interview Preparation Course.