Example usage for java.util SimpleTimeZone getDisplayName

List of usage examples for java.util SimpleTimeZone getDisplayName

Introduction

In this page you can find the example usage for java.util SimpleTimeZone getDisplayName.

Prototype

public final String getDisplayName() 

Source Link

Document

Returns a long standard time name of this TimeZone suitable for presentation to the user in the default locale.

Usage

From source file:Test.java

public static void main(String[] args) {
    SimpleTimeZone simpleTimeZone = new SimpleTimeZone(-21600000, "CST", Calendar.MARCH, 1, -Calendar.SUNDAY,
            7200000, Calendar.NOVEMBER, -1, Calendar.SUNDAY, 7200000, 3600000);

    System.out.println(simpleTimeZone.getDisplayName() + " - " + simpleTimeZone.observesDaylightTime());

}