Example usage for org.jfree.chart.date SerialDate monthCodeToString

List of usage examples for org.jfree.chart.date SerialDate monthCodeToString

Introduction

In this page you can find the example usage for org.jfree.chart.date SerialDate monthCodeToString.

Prototype

public static String monthCodeToString(final int month) 

Source Link

Document

Returns a string representing the supplied month.

Usage

From source file:org.jfree.data.time.Month.java

/**
 * Returns a string representing the month (e.g. "January 2002").
 * <P>/*from   ww  w  . j av  a 2 s  .c om*/
 * To do: look at internationalisation.
 *
 * @return A string representing the month.
 */
@Override
public String toString() {
    return SerialDate.monthCodeToString(this.month) + " " + this.year;
}