- java.lang.Object
-
- org.jfree.chart.labels.StandardFlowLabelGenerator
-
- All Implemented Interfaces:
Serializable,FlowLabelGenerator
public class StandardFlowLabelGenerator extends Object implements FlowLabelGenerator, Serializable
Standard flow label generator. Instances of this class are immutable.- Since:
- 1.5.3
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static StringDEFAULT_TEMPLATEThe default template for formatting the label.
-
Constructor Summary
Constructors Constructor Description StandardFlowLabelGenerator()Creates a new instance with the default template.StandardFlowLabelGenerator(String template)Creates a new generator with the specified template.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object obj)Tests this instance for equality with an arbitrary object.StringgenerateLabel(FlowDataset dataset, FlowKey key)Returns a label for the specified flow.inthashCode()
-
-
-
Field Detail
-
DEFAULT_TEMPLATE
public static final String DEFAULT_TEMPLATE
The default template for formatting the label.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
StandardFlowLabelGenerator
public StandardFlowLabelGenerator()
Creates a new instance with the default template.
-
StandardFlowLabelGenerator
public StandardFlowLabelGenerator(String template)
Creates a new generator with the specified template. The template is passed to a Java Formatter instance along with four arguments, the stage (an integer), the source (a String), the destination (a String) and the flow value (a Number).- Parameters:
template- the template (nullnot permitted).
-
-
Method Detail
-
generateLabel
public String generateLabel(FlowDataset dataset, FlowKey key)
Returns a label for the specified flow.- Specified by:
generateLabelin interfaceFlowLabelGenerator- Parameters:
dataset- the flow dataset (nullnot permitted).key- the flow key (nullnot permitted).- Returns:
- The label (possibly
null).
-
equals
public boolean equals(Object obj)
Tests this instance for equality with an arbitrary object.
-
-