- java.lang.Object
-
- javafx.scene.paint.Stop
-
public final class Stop extends Object
Defines one element of the ramp of colors to use on a gradient. For more information seejavafx.scene.paint.LinearGradient
andjavafx.scene.paint.RadialGradient
.Example:
// object bounding box relative (proportional:true, default) Stop[] stops = { new Stop(0, Color.WHITE), new Stop(1, Color.BLACK)}; LinearGradient lg = new LinearGradient(0, 0, 1, 0, true, CycleMethod.No_CYCLE, stops); Rectangle r = new Rectangle(); r.setFill(lg);
- Since:
- JavaFX 2.0
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object obj)
Indicates whether some other object is "equal to" this one.Color
getColor()
Gets the color of the gradient at this offset.double
getOffset()
Gets a number ranging from0
to1
that indicates where this gradient stop is placed.int
hashCode()
Returns a hash code for thisStop
object.String
toString()
Returns a string representation of thisStop
object.
-
-
-
Constructor Detail
-
Stop
public Stop(double offset, Color color)
Creates a new instance of Stop.- Parameters:
offset
- Stop's position (ranging from0
to1
color
- Stop's color
-
-
Method Detail
-
getOffset
public final double getOffset()
Gets a number ranging from0
to1
that indicates where this gradient stop is placed. For linear gradients, theoffset
variable represents a location along the gradient vector. For radial gradients, it represents a percentage distance from the focus point to the edge of the outermost/largest circle.- Returns:
- position of the Stop within the gradient
(ranging from
0
to1
)
-
getColor
public final Color getColor()
Gets the color of the gradient at this offset.- Returns:
- the color of the gradient at this offset
-
equals
public boolean equals(Object obj)
Indicates whether some other object is "equal to" this one.- Overrides:
equals
in classObject
- Parameters:
obj
- the reference object with which to compare.- Returns:
true
if this object is equal to theobj
argument;false
otherwise.- See Also:
Object.hashCode()
,HashMap
-
hashCode
public int hashCode()
Returns a hash code for thisStop
object.- Overrides:
hashCode
in classObject
- Returns:
- a hash code for this
Stop
object. - See Also:
Object.equals(java.lang.Object)
,System.identityHashCode(java.lang.Object)
-
-