Example usage for java.util SimpleTimeZone toString

List of usage examples for java.util SimpleTimeZone toString

Introduction

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

Prototype

public String toString() 

Source Link

Document

Returns a string representation of this time zone.

Usage

From source file:Main.java

public static void main(String args[]) {

    SimpleTimeZone stobj = new SimpleTimeZone(820, "US");

    // get string value of time zone     
    System.out.println("String value is : " + stobj.toString());
}