Uses of Class
org.jfree.data.flow.NodeKey
-
Packages that use NodeKey Package Description org.jfree.chart.entity Classes representing components of (or entities in) a chart.org.jfree.chart.plot.flow Classes for creating flow plots (a type of Sankey chart).org.jfree.data.flow Data interfaces and classes for flow plots (a type of Sankey chart). -
-
Uses of NodeKey in org.jfree.chart.entity
Fields in org.jfree.chart.entity declared as NodeKey Modifier and Type Field Description private NodeKeyNodeEntity. keyMethods in org.jfree.chart.entity that return NodeKey Modifier and Type Method Description NodeKeyNodeEntity. getKey()Returns the node key.Constructors in org.jfree.chart.entity with parameters of type NodeKey Constructor Description NodeEntity(NodeKey key, java.awt.Shape area, java.lang.String toolTipText)Creates a new instance. -
Uses of NodeKey in org.jfree.chart.plot.flow
Fields in org.jfree.chart.plot.flow with type parameters of type NodeKey Modifier and Type Field Description private java.util.Map<NodeKey,java.awt.Color>FlowPlot. nodeColorMapStores colors for specific nodes - if there isn't a color in here for the node, the default node color will be used (unless the color swatch is active).Methods in org.jfree.chart.plot.flow with parameters of type NodeKey Modifier and Type Method Description java.awt.ColorFlowPlot. getNodeFillColor(NodeKey nodeKey)Returns the fill color for the specified node.protected java.awt.ColorFlowPlot. lookupNodeColor(NodeKey nodeKey)Performs a lookup on the color for the specified node.voidFlowPlot. setNodeFillColor(NodeKey nodeKey, java.awt.Color color)Sets the fill color for the specified node and sends a change notification to all registered listeners. -
Uses of NodeKey in org.jfree.data.flow
Fields in org.jfree.data.flow with type parameters of type NodeKey Modifier and Type Field Description private java.util.Map<NodeKey,java.util.Map<java.lang.String,java.lang.Object>>DefaultFlowDataset. nodePropertiesNode properties.Methods in org.jfree.data.flow that return types with arguments of type NodeKey Modifier and Type Method Description java.util.Set<NodeKey<K>>DefaultFlowDataset. getAllNodes()Returns the set of keys for all the nodes in the dataset.java.util.Set<NodeKey<K>>FlowDataset. getAllNodes()Returns the set of keys for all the nodes in the dataset.Methods in org.jfree.data.flow with parameters of type NodeKey Modifier and Type Method Description java.util.List<FlowKey<K>>DefaultFlowDataset. getInFlows(NodeKey nodeKey)Returns a list of flow keys for all the flows coming into this node.java.lang.ObjectDefaultFlowDataset. getNodeProperty(NodeKey<K> nodeKey, java.lang.String propertyKey)Returns the value of a property, if specified, for the specified node.java.lang.ObjectFlowDataset. getNodeProperty(NodeKey<K> nodeKey, java.lang.String propertyKey)Returns the value of a property, if specified, for the specified node.java.util.List<FlowKey>DefaultFlowDataset. getOutFlows(NodeKey nodeKey)Returns a list of flow keys for all the flows going out of this node.voidDefaultFlowDataset. setNodeProperty(NodeKey<K> nodeKey, java.lang.String propertyKey, java.lang.Object value)Sets a property for the specified node and notifies registered listeners that the dataset has changed.
-