Class XYZItemKey<S extends Comparable<S>>

java.lang.Object
org.jfree.chart3d.data.xyz.XYZItemKey<S>
Type Parameters:
S - The series key type.
All Implemented Interfaces:
Serializable, Comparable<XYZItemKey<S>>, ItemKey

public class XYZItemKey<S extends Comparable<S>> extends Object implements ItemKey, Comparable<XYZItemKey<S>>, Serializable
An object that references one data item in an XYZDataset. This is used internally to track the data item that a 3D object is related to, if any (and later that link is used for chart interaction). Instances of this class are immutable.
Since:
1.3
See Also:
  • Constructor Details

    • XYZItemKey

      public XYZItemKey(S seriesKey, int itemIndex)
      Creates a new instance.
      Parameters:
      seriesKey - the series key (null not permitted).
      itemIndex - the item index.
  • Method Details