Java org.jfree.data DefaultKeyedValues2D fields, constructors, methods, implement or subclass

Example usage for Java org.jfree.data DefaultKeyedValues2D fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.jfree.data DefaultKeyedValues2D.

The text is from its open source code.

Constructor

DefaultKeyedValues2D()
Creates a new instance (initially empty).
DefaultKeyedValues2D(boolean sortRowKeys)
Creates a new instance (initially empty).

Method

voidaddValue(Number value, Comparable rowKey, Comparable columnKey)
Adds a value to the table.
Objectclone()
Returns a clone.
booleanequals(Object o)
Tests if this object is equal to another.
ClassgetClass()
Returns the runtime class of this Object .
intgetColumnCount()
Returns the column count.
ComparablegetColumnKey(int column)
Returns the key for a given column.
intgetRowCount()
Returns the row count.
ComparablegetRowKey(int row)
Returns the key for a given row.
NumbergetValue(int row, int column)
Returns the value for a given row and column.
NumbergetValue(Comparable rowKey, Comparable columnKey)
Returns the value for the given row and column keys.
voidremoveColumn(int columnIndex)
Removes a column.
voidremoveColumn(Comparable columnKey)
Removes a column from the table.
voidremoveRow(int rowIndex)
Removes a row.
voidremoveRow(Comparable rowKey)
Removes a row from the table.
voidremoveValue(Comparable rowKey, Comparable columnKey)
Removes a value from the table by setting it to null.
voidsetValue(Number value, Comparable rowKey, Comparable columnKey)
Adds or updates a value.