public class GrayPaintScale extends Object implements PaintScale, org.jfree.util.PublicCloneable, Serializable
Constructor and Description |
---|
GrayPaintScale()
Creates a new
GrayPaintScale instance with default values. |
GrayPaintScale(double lowerBound,
double upperBound)
Creates a new paint scale for values in the specified range.
|
GrayPaintScale(double lowerBound,
double upperBound,
int alpha)
Creates a new paint scale for values in the specified range.
|
Modifier and Type | Method and Description |
---|---|
Object |
clone()
Returns a clone of this
GrayPaintScale instance. |
boolean |
equals(Object obj)
Tests this
GrayPaintScale instance for equality with an
arbitrary object. |
int |
getAlpha()
Returns the alpha transparency that was specified in the constructor.
|
double |
getLowerBound()
Returns the lower bound.
|
Paint |
getPaint(double value)
Returns a paint for the specified value.
|
double |
getUpperBound()
Returns the upper bound.
|
int |
hashCode()
Returns a hash code for this instance.
|
public GrayPaintScale()
GrayPaintScale
instance with default values.public GrayPaintScale(double lowerBound, double upperBound)
lowerBound
- the lower bound.upperBound
- the upper bound.IllegalArgumentException
- if lowerBound
is not
less than upperBound
.public GrayPaintScale(double lowerBound, double upperBound, int alpha)
lowerBound
- the lower bound.upperBound
- the upper bound.alpha
- the alpha transparency (0-255).IllegalArgumentException
- if lowerBound
is not
less than upperBound
, or alpha
is not in
the range 0 to 255.public double getLowerBound()
getLowerBound
in interface PaintScale
getUpperBound()
public double getUpperBound()
getUpperBound
in interface PaintScale
getLowerBound()
public int getAlpha()
public Paint getPaint(double value)
getPaint
in interface PaintScale
value
- the value (must be within the range specified by the
lower and upper bounds for the scale).public boolean equals(Object obj)
GrayPaintScale
instance for equality with an
arbitrary object. This method returns true
if and only
if:
obj
is not null
;obj
is an instance of GrayPaintScale
;public int hashCode()
public Object clone() throws CloneNotSupportedException
GrayPaintScale
instance.clone
in interface org.jfree.util.PublicCloneable
clone
in class Object
CloneNotSupportedException
- if there is a problem cloning this
instance.Jas4pp 1.5 © Java Analysis Studio for Particle Physics