public class PolylineStyle extends GeometryStyle
Constructor and Description |
---|
PolylineStyle() |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getDashArray() |
java.lang.String |
getLineCap() |
java.lang.String |
getLineJoin() |
java.lang.String |
getStrokeColor() |
java.lang.Double |
getStrokeOpacity() |
java.lang.Integer |
getStrokeWeight() |
PolylineStyle |
setDashArray(java.lang.String dashArray)
Sets the stroke dash-pattern.
|
PolylineStyle |
setLineCap(java.lang.String lineCap)
Sets shape to be used at the end of the stroke.
|
PolylineStyle |
setLineJoin(java.lang.String lineJoin)
Sets shape to be used at the corners of the stroke.
|
PolylineStyle |
setStrokeColor(java.lang.String strokeColor)
Sets stroke color.
|
PolylineStyle |
setStrokeOpacity(java.lang.Double strokeOpacity)
Sets stroke opacity.
|
PolylineStyle |
setStrokeWeight(java.lang.Integer strokeWeight)
Sets stroke width in pixels.
|
public java.lang.String getStrokeColor()
public PolylineStyle setStrokeColor(java.lang.String strokeColor)
strokeColor
- String representation of the rgb codePolylineStyle
on which this method was called. Useful for a fluent API.public java.lang.Double getStrokeOpacity()
public PolylineStyle setStrokeOpacity(java.lang.Double strokeOpacity)
strokeOpacity
- double value in the range between 0.0 (fully transparent) to 1.0 (fully opaque)PolylineStyle
on which this method was called. Useful for a fluent API.public java.lang.Integer getStrokeWeight()
public PolylineStyle setStrokeWeight(java.lang.Integer strokeWeight)
strokeWeight
- PolylineStyle
on which this method was called. Useful for a fluent API.public java.lang.String getDashArray()
public PolylineStyle setDashArray(java.lang.String dashArray)
For more information about the pattern see link.
dashArray
- PolylineStyle
on which this method was called. Useful for a fluent API.public java.lang.String getLineCap()
public PolylineStyle setLineCap(java.lang.String lineCap)
For more information about the options see link.
lineCap
- PolylineStyle
on which this method was called. Useful for a fluent API.public java.lang.String getLineJoin()
public PolylineStyle setLineJoin(java.lang.String lineJoin)
For more information about the options see link.
lineJoin
- PolylineStyle
on which this method was called. Useful for a fluent API.