Class KeyedValues2DItemKey<R extends Comparable<R>,​C extends Comparable<C>>

java.lang.Object
org.jfree.data.KeyedValues2DItemKey<R,​C>
Type Parameters:
R - the row key type.
C - the column key type.
All Implemented Interfaces:
Serializable, Comparable<KeyedValues2DItemKey<R,​C>>, ItemKey

public class KeyedValues2DItemKey<R extends Comparable<R>,​C extends Comparable<C>>
extends Object
implements ItemKey, Comparable<KeyedValues2DItemKey<R,​C>>, Serializable
An object that references one data item in a KeyedValues2D data structure. Instances of this class are immutable (subject to the caller using series, row and column keys that are immutable).
See Also:
Serialized Form
  • Constructor Details

    • KeyedValues2DItemKey

      public KeyedValues2DItemKey​(R rowKey, C columnKey)
      Creates a new instance.
      Parameters:
      rowKey - the row key (null not permitted).
      columnKey - the column key (null not permitted).
  • Method Details