Uses of Class
org.jfree.data.flow.FlowKey
-
Packages that use FlowKey Package Description org.jfree.chart.entity Classes representing components of (or entities in) a chart.org.jfree.chart.labels Generators and other classes used for the display of item labels and tooltips.org.jfree.data.flow Data interfaces and classes for flow plots (a type of Sankey chart). -
-
Uses of FlowKey in org.jfree.chart.entity
Fields in org.jfree.chart.entity declared as FlowKey Modifier and Type Field Description private FlowKey
FlowEntity. key
Methods in org.jfree.chart.entity that return FlowKey Modifier and Type Method Description FlowKey
FlowEntity. getKey()
Returns the key identifying the flow.Constructors in org.jfree.chart.entity with parameters of type FlowKey Constructor Description FlowEntity(FlowKey key, java.awt.Shape area, java.lang.String toolTipText, java.lang.String urlText)
Creates a new instance. -
Uses of FlowKey in org.jfree.chart.labels
Methods in org.jfree.chart.labels with parameters of type FlowKey Modifier and Type Method Description java.lang.String
FlowLabelGenerator. generateLabel(FlowDataset dataset, FlowKey key)
Returns a label for the specified flow.java.lang.String
StandardFlowLabelGenerator. generateLabel(FlowDataset dataset, FlowKey key)
Returns a label for the specified flow. -
Uses of FlowKey in org.jfree.data.flow
Fields in org.jfree.data.flow with type parameters of type FlowKey Modifier and Type Field Description private java.util.Map<FlowKey,java.util.Map<java.lang.String,java.lang.Object>>
DefaultFlowDataset. flowProperties
Flow properties.private java.util.Map<FlowKey<K>,java.lang.Number>
DefaultFlowDataset. flows
Storage for the flows.Methods in org.jfree.data.flow that return types with arguments of type FlowKey Modifier and Type Method Description java.util.Set<FlowKey<K>>
DefaultFlowDataset. getAllFlows()
Returns a set of keys for all the flows in the dataset.java.util.Set<FlowKey<K>>
FlowDataset. getAllFlows()
Returns a set of keys for all the flows in the dataset.java.util.List<FlowKey<K>>
DefaultFlowDataset. getInFlows(NodeKey nodeKey)
Returns a list of flow keys for all the flows coming into this node.java.util.List<FlowKey>
DefaultFlowDataset. getOutFlows(NodeKey nodeKey)
Returns a list of flow keys for all the flows going out of this node.Methods in org.jfree.data.flow with parameters of type FlowKey Modifier and Type Method Description java.lang.Object
DefaultFlowDataset. getFlowProperty(FlowKey<K> flowKey, java.lang.String propertyKey)
Returns the value of a property, if specified, for the specified flow.java.lang.Object
FlowDataset. getFlowProperty(FlowKey<K> flowKey, java.lang.String propertyKey)
Returns the value of a property, if specified, for the specified flow.void
DefaultFlowDataset. setFlowProperty(FlowKey<K> flowKey, java.lang.String propertyKey, java.lang.Object value)
Sets a property for the specified flow and notifies registered listeners that the dataset has changed.
-