Package org.rrd4j.graph
Class SimpleTimeLabelFormat
java.lang.Object
org.rrd4j.graph.SimpleTimeLabelFormat
- All Implemented Interfaces:
TimeLabelFormat
public class SimpleTimeLabelFormat extends Object implements TimeLabelFormat
Simple time label using a format similar to
strftime
. For more details on the
supported conversions see the Date/Time Conversions section for Formatter
.
Examples:
- strftime pattern:
%Y-%m-%dT%H:%M:%S
- simple date format pattern:
yyyy'-'MM'-'dd'T'HH':'mm':'ss
-
Constructor Summary
Constructors Constructor Description SimpleTimeLabelFormat(String format)
Create a new instance using a format string that is either an strftime patter or a simple date format pattern. -
Method Summary
-
Constructor Details
-
SimpleTimeLabelFormat
Create a new instance using a format string that is either an strftime patter or a simple date format pattern.- Parameters:
format
-
-
-
Method Details
-
format
Description copied from interface:TimeLabelFormat
Format a timestamp.- Specified by:
format
in interfaceTimeLabelFormat
- Parameters:
calendar
- calendar to use for the formatterlocale
- locale that will be used withString.format
- Returns:
- formatted string for the timestamp
-