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

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

Introduction

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

The text is from its open source code.

Constructor

KeyedObjects2D()
Creates a new instance (initially empty).

Method

voidaddObject(Object object, Comparable rowKey, Comparable columnKey)
Adds an object to the table.
Objectclone()
Returns a clone.
booleanequals(Object obj)
Tests this object for equality with an arbitrary object.
ClassgetClass()
Returns the runtime class of this Object .
intgetColumnCount()
Returns the column count.
ListgetColumnKeys()
Returns the column keys.
ObjectgetObject(int row, int column)
Returns the object for a given row and column.
ObjectgetObject(Comparable rowKey, Comparable columnKey)
Returns the object for the given row and column keys.
intgetRowCount()
Returns the row count.
ListgetRowKeys()
Returns the row keys.
voidremoveColumn(int columnIndex)
Removes an entire column from the table.
voidremoveColumn(Comparable columnKey)
Removes an entire column from the table.
voidremoveObject(Comparable rowKey, Comparable columnKey)
Removes an object from the table by setting it to null.
voidremoveRow(int rowIndex)
Removes an entire row from the table.
voidremoveRow(Comparable rowKey)
Removes an entire row from the table.
voidsetObject(Object object, Comparable rowKey, Comparable columnKey)
Adds or updates an object.