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

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

Introduction

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

The text is from its open source code.

Constructor

XYDataItem(Number x, Number y)
Constructs a new data item.
XYDataItem(double x, double y)
Constructs a new data item.

Method

Objectclone()
Returns a clone of this object.
intcompareTo(Object o1)
Returns an integer indicating the order of this object relative to another object.
booleanequals(Object obj)
Tests if this object is equal to another.
ClassgetClass()
Returns the runtime class of this Object .
NumbergetX()
Returns the x-value.
doublegetXValue()
Returns the x-value as a double primitive.
NumbergetY()
Returns the y-value.
doublegetYValue()
Returns the y-value as a double primitive.
inthashCode()
Returns a hash code.
voidsetY(double y)
Sets the y-value for this data item.
voidsetY(Number y)
Sets the y-value for this data item.