java.lang.Object | ||
↳ | com.carto.styles.StyleBuilder | |
↳ | com.carto.styles.GeometryCollectionStyleBuilder |
A builder class for GeometryCollectionStyle.
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
GeometryCollectionStyleBuilder()
Constructs a GeometryCollectionStyleBuilder object with all parameters set to defaults.
|
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
GeometryCollectionStyle |
buildStyle()
Builds a new instance of the GeometryCollectionStyle object using previously set parameters.
| ||||||||||
synchronized void | delete() | ||||||||||
LineStyle |
getLineStyle()
Returns the line style.
| ||||||||||
PointStyle |
getPointStyle()
Returns the point style.
| ||||||||||
PolygonStyle |
getPolygonStyle()
Returns the polygon style.
| ||||||||||
void |
setLineStyle(LineStyle lineStyle)
Sets the style that will be used for drawing lines.
| ||||||||||
void |
setPointStyle(PointStyle pointStyle)
Sets the style that will be used for drawing points.
| ||||||||||
void |
setPolygonStyle(PolygonStyle polygonStyle)
Sets the style that will be used for drawing polygons.
|
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() | |||||||||||
![]() |
Constructs a GeometryCollectionStyleBuilder object with all parameters set to defaults.
Builds a new instance of the GeometryCollectionStyle object using previously set parameters.
Sets the style that will be used for drawing lines. The default is null style.
lineStyle | The new line style. |
---|
Sets the style that will be used for drawing points. The default is null style.
pointStyle | The new point style. |
---|
Sets the style that will be used for drawing polygons. The default is null style.
polygonStyle | The new polygon style. |
---|