Package org.geotools.styling
Class AbstractSymbolizer
Object
AbstractSymbolizer
- All Implemented Interfaces:
Symbolizer
- Direct Known Subclasses:
LineSymbolizerImpl
,PointSymbolizerImpl
,PolygonSymbolizerImpl
,RasterSymbolizerImpl
,TextSymbolizerImpl
,VendorSymbolizerImpl
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected Description
protected Expression
protected String
protected Unit<Length>
-
Constructor Summary
ConstructorsModifierConstructorDescriptionprotected
AbstractSymbolizer
(String name, Description description, String geometryPropertyName, Unit<Length> unitOfMeasure) AbstractSymbolizer
(String name, Description description, Expression geometry, Unit<Length> unitOfMeasure) -
Method Summary
Modifier and TypeMethodDescriptionboolean
Returns the description of this symbolizer.This defines the geometry to be used for styling.
The property is optional and if it is absent (null) then the "default" geometry property of the feature should be used.
Typically, features only have one geometry so, in general, the need to select one is not required.
The expression can also build a new geometry out of existing attributes or transform an existing geometry.Returns the name of the geometry feature attribute to use for drawing.getName()
Returns a name for this symbolizer.Map of vendor options for the symbolizer.Unit<Length>
Returns a measure unit.int
hashCode()
boolean
Determines if a vendor option with the specific key has been set on this symbolizer.void
setDescription
(Description description) Tile and Abstract of Symbolzer.void
setGeometry
(Expression geometry) Sets the expression used for styling.void
setGeometryPropertyName
(String geometryPropertyName) A shortcut to define the geometry expression as aPropertyName
Typically, features only have one geometry so, in general, the need to select one is not required.void
Name of symbolizer; not always human readable.void
setUnitOfMeasure
(Unit<Length> uom) Defines a measure unit for the symbolizer.Methods inherited from class Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface Symbolizer
accept, accept
-
Field Details
-
name
-
description
-
geometry
-
unitOfMeasure
protected Unit<Length> unitOfMeasure -
options
-
-
Constructor Details
-
AbstractSymbolizer
protected AbstractSymbolizer() -
AbstractSymbolizer
public AbstractSymbolizer(String name, Description description, Expression geometry, Unit<Length> unitOfMeasure) -
AbstractSymbolizer
public AbstractSymbolizer(String name, Description description, String geometryPropertyName, Unit<Length> unitOfMeasure)
-
-
Method Details
-
getDescription
Description copied from interface:Symbolizer
Returns the description of this symbolizer.- Specified by:
getDescription
in interfaceSymbolizer
- Returns:
- Description with usual informations used for user interfaces.
-
setDescription
Description copied from interface:Symbolizer
Tile and Abstract of Symbolzer.- Specified by:
setDescription
in interfaceSymbolizer
-
getName
Description copied from interface:Symbolizer
Returns a name for this symbolizer. This can be any string that uniquely identifies this style within a given canvas. It is not meant to be human-friendly. (The "title" property is meant to be human friendly.)- Specified by:
getName
in interfaceSymbolizer
- Returns:
- a name for this style.
-
setName
Description copied from interface:Symbolizer
Name of symbolizer; not always human readable.Please consider getDescription().getTitle() as an alternative if presenting this symbolizer in a user interface.
- Specified by:
setName
in interfaceSymbolizer
-
setUnitOfMeasure
public void setUnitOfMeasure(Unit<Length> uom) Description copied from interface:Symbolizer
Defines a measure unit for the symbolizer. This parameter is inherited from GML. Renderers shall use the unit to correctly render symbols.Recommended uom definitions are :
metre
foot
pixel
- Specified by:
setUnitOfMeasure
in interfaceSymbolizer
- Parameters:
uom
- can be null, which indicates usage of the pixel unit.
-
getUnitOfMeasure
public Unit<Length> getUnitOfMeasure()Description copied from interface:Symbolizer
Returns a measure unit. This parameter is inherited from GML. Renderers shall use the unit to correctly render symbols.Recommended uom definitions are :
metre
foot
pixel
- Specified by:
getUnitOfMeasure
in interfaceSymbolizer
- Returns:
- can be null. If the unit is null than we shall use a the pixel unit
-
getGeometry
Description copied from interface:Symbolizer
This defines the geometry to be used for styling.
The property is optional and if it is absent (null) then the "default" geometry property of the feature should be used.
Typically, features only have one geometry so, in general, the need to select one is not required.
The expression can also build a new geometry out of existing attributes or transform an existing geometry. For geometry transformations that do change the geometry locations or that make up geometries out of non geometric attributes it is advised that the Expression implements the SpatialTransformationFunction interface- Specified by:
getGeometry
in interfaceSymbolizer
-
setGeometry
Description copied from interface:Symbolizer
Sets the expression used for styling. SeeSymbolizer.getGeometry()
for further details.- Specified by:
setGeometry
in interfaceSymbolizer
-
getGeometryPropertyName
Description copied from interface:Symbolizer
Returns the name of the geometry feature attribute to use for drawing. May return null (or Expression.NIL) if this symbol is to use the default geometry attribute, whatever it may be. Using null in this fashion is similar to a PropertyName using the XPath expression ".".The content of the element gives the property name in XPath syntax. In principle, a fixed geometry could be defined using GML or operators could be defined for computing the geometry from references or literals. However, using a feature property directly is by far the most commonly useful method.
- Specified by:
getGeometryPropertyName
in interfaceSymbolizer
- Returns:
- Geometry attribute name, or
null
to indicate default geometry
-
setGeometryPropertyName
Description copied from interface:Symbolizer
A shortcut to define the geometry expression as aPropertyName
Typically, features only have one geometry so, in general, the need to select one is not required. Note: this moves a little away from the SLD spec which provides an XPath reference to a Geometry object, but does follow it in spirit.- Specified by:
setGeometryPropertyName
in interfaceSymbolizer
-
hasOption
Description copied from interface:Symbolizer
Determines if a vendor option with the specific key has been set on this symbolizer.- Specified by:
hasOption
in interfaceSymbolizer
-
getOptions
Description copied from interface:Symbolizer
Map of vendor options for the symbolizer.Client code looking for the existence of a single option should use
Symbolizer.hasOption(String)
- Specified by:
getOptions
in interfaceSymbolizer
-
hashCode
public int hashCode() -
equals
-