Uses of Interface
org.geotools.styling.Symbolizer

Packages that use Symbolizer
org.geotools.renderer.shape   
org.geotools.renderer.style Styling to be applied on Geometry objects at rendering time. 
org.geotools.styling Allows for symbolization of geospatial data.  
org.geotools.styling.visitor   
 

Uses of Symbolizer in org.geotools.renderer.shape
 

Methods in org.geotools.renderer.shape with parameters of type Symbolizer
 void OpacityFinder.visit(Symbolizer sym)
           
 

Uses of Symbolizer in org.geotools.renderer.style
 

Methods in org.geotools.renderer.style with parameters of type Symbolizer
 Style2D SLDStyleFactory.createStyle(Feature f, Symbolizer symbolizer, javax.media.jai.util.Range scaleRange)
           Creates a rendered style Makes use of a symbolizer cache based on identity to avoid recomputing over and over the same style object and to reduce memory usage.
 Style2D SLDStyleFactory.createDynamicStyle(Feature f, Symbolizer symbolizer, javax.media.jai.util.Range scaleRange)
          Creates a rendered style
 

Uses of Symbolizer in org.geotools.styling
 

Subinterfaces of Symbolizer in org.geotools.styling
 interface LineSymbolizer
          A symbolizer describes how a feature should appear on a map.
 interface PointSymbolizer
          A symbolizer describes how a feature should appear on a map.
 interface PolygonSymbolizer
          A symbolizer describes how a polygon feature should appear on a map.
 interface RasterSymbolizer
          The RasterSymbolizer describes how to render raster/matrix-coverage data (e.g., satellite photos, DEMs).
 interface TextSymbolizer
          A symbolizer describes how a feature should appear on a map.
 interface TextSymbolizer2
          Contains label shield hack
 

Classes in org.geotools.styling that implement Symbolizer
 class LineSymbolizerImpl
          Provides a representation of a LineSymbolizer in an SLD Document.
 class PointSymbolizerImpl
          Provides a Java representation of the PointSymbolizer.
 class PolygonSymbolizerImpl
          Provides a representation of a PolygonSymbolizer in an SLD Document.
 class RasterSymbolizerImpl
          DOCUMENT ME!
 class TextSymbolizerImpl
          Provides a Java representation of an SLD TextSymbolizer that defines how text symbols should be rendered.
 

Methods in org.geotools.styling that return Symbolizer
 Symbolizer ImageOutlineImpl.getSymbolizer()
           
 Symbolizer RasterSymbolizerImpl.getImageOutline()
          The ImageOutline element specifies that individual source rasters in a multi-raster set (such as a set of satellite-image scenes) should be outlined with either a LineStringSymbol or PolygonSymbol.
 Symbolizer[] RuleImpl.getSymbolizers()
           
protected static Symbolizer SLD.symbolizer(Style style, java.lang.Class SYMBOLIZER)
          Retrieve the first SYMBOLIZER from the provided Style.
protected static Symbolizer SLD.symbolizer(FeatureTypeStyle fts, java.lang.Class SYMBOLIZER)
          Retrieve the first SYMBOLIZER from the provided FeatureTypeStyle.
static Symbolizer[] SLD.symbolizers(Style style)
           
static Symbolizer[] SLD.symbolizers(Rule rule)
           
 Symbolizer ImageOutline.getSymbolizer()
          Returns the symbolizer of the image outline.
 Symbolizer RasterSymbolizer.getImageOutline()
          The ImageOutline element specifies that individual source rasters in a multi-raster set (such as a set of satellite-image scenes) should be outlined with either a LineStringSymbol or PolygonSymbol.
 Symbolizer[] Rule.getSymbolizers()
          The symbolizers contain the actual styling information for different geometry types.
 

Methods in org.geotools.styling with parameters of type Symbolizer
 void XMLEncoder.visit(Symbolizer sym)
          Deprecated.  
abstract  RasterSymbolizer AbstractStyleFactory.createRasterSymbolizer(java.lang.String geometryPropertyName, Expression opacity, ChannelSelection channel, Expression overlap, ColorMap colorMap, ContrastEnhancement ce, ShadedRelief relief, Symbolizer outline)
           
 ImageOutline StyleFactoryImpl.createImageOutline(Symbolizer symbolizer)
           
 RasterSymbolizer StyleFactoryImpl.createRasterSymbolizer(java.lang.String geometryPropertyName, Expression opacity, ChannelSelection channel, Expression overlap, ColorMap colorMap, ContrastEnhancement cenhancement, ShadedRelief relief, Symbolizer outline)
           
 void StyleAttributeExtractor.visit(Symbolizer sym)
           
 void ImageOutlineImpl.setSymbolizer(Symbolizer symbolizer)
           
 void RasterSymbolizerImpl.setImageOutline(Symbolizer symbolizer)
          The ImageOutline element specifies that individual source rasters in a multi-raster set (such as a set of satellite-image scenes) should be outlined with either a LineStringSymbol or PolygonSymbol.
 void RuleImpl.addSymbolizer(Symbolizer symb)
           
 void RuleImpl.setSymbolizers(Symbolizer[] syms)
           
 FeatureTypeStyle StyleBuilder.createFeatureTypeStyle(Symbolizer symbolizer)
          create a Feature type styler
 Rule StyleBuilder.createRule(Symbolizer symbolizer)
          create a simple styling rule
 Rule StyleBuilder.createRule(Symbolizer[] symbolizers)
          reate a simple styling rule
 Rule StyleBuilder.createRule(Symbolizer symbolizer, double minScaleDenominator, double maxScaleDenominator)
          create a simple styling rule, see the SLD Spec for more details of scaleDenominators
 Rule StyleBuilder.createRule(Symbolizer[] symbolizers, double minScaleDenominator, double maxScaleDenominator)
          create a simple styling rule, see the SLD Spec for more details of scaleDenominators
 FeatureTypeStyle StyleBuilder.createFeatureTypeStyle(Symbolizer symbolizer, double minScaleDenominator, double maxScaleDenominator)
          create a Feature type styler see the SLD Spec for more details of scaleDenominators
 FeatureTypeStyle StyleBuilder.createFeatureTypeStyle(Symbolizer[] symbolizers, double minScaleDenominator, double maxScaleDenominator)
          create a Feature type styler see the SLD Spec for more details of scaleDenominators
 FeatureTypeStyle StyleBuilder.createFeatureTypeStyle(java.lang.String featureTypeName, Symbolizer symbolizer)
          create a Feature type styler
 FeatureTypeStyle StyleBuilder.createFeatureTypeStyle(java.lang.String featureTypeName, Symbolizer[] symbolizers)
          create a Feature type styler
 FeatureTypeStyle StyleBuilder.createFeatureTypeStyle(java.lang.String featureTypeName, Symbolizer symbolizer, double minScaleDenominator, double maxScaleDenominator)
          create a Feature type styler see the SLD Spec for more details of scaleDenominators
 FeatureTypeStyle StyleBuilder.createFeatureTypeStyle(java.lang.String featureTypeName, Symbolizer[] symbolizers, double minScaleDenominator, double maxScaleDenominator)
          create a Feature type styler see the SLD Spec for more details of scaleDenominators
 Style StyleBuilder.createStyle(Symbolizer symbolizer)
          create a new style
 Style StyleBuilder.createStyle(Symbolizer symbolizer, double minScaleDenominator, double maxScaleDenominator)
          create a new style
 Style StyleBuilder.createStyle(java.lang.String featureTypeStyleName, Symbolizer symbolizer)
          create a new style
 Style StyleBuilder.createStyle(java.lang.String featureTypeStyleName, Symbolizer symbolizer, double minScaleDenominator, double maxScaleDenominator)
          create a new style
 void ImageOutline.setSymbolizer(Symbolizer symbolizer)
          Sets the symbolizer of the image outline.
 ImageOutline StyleFactory.createImageOutline(Symbolizer symbolizer)
          Creates a new ImageOutline.
 RasterSymbolizer StyleFactory.createRasterSymbolizer(java.lang.String geometryPropertyName, Expression opacity, ChannelSelection channel, Expression overlap, ColorMap colorMap, ContrastEnhancement ce, ShadedRelief relief, Symbolizer outline)
           
 void RasterSymbolizer.setImageOutline(Symbolizer symbolizer)
          The ImageOutline element specifies that individual source rasters in a multi-raster set (such as a set of satellite-image scenes) should be outlined with either a LineStringSymbol or PolygonSymbol.
 void Rule.setSymbolizers(Symbolizer[] symbolizers)
          The symbolizers contain the actual styling information for different geometry types.
 void StyleVisitor.visit(Symbolizer sym)
          since it is impossible to create a Symbolizer this method should generate an exception or warning.
 

Constructors in org.geotools.styling with parameters of type Symbolizer
RuleImpl(Symbolizer[] symbolizers)
          Creates a new instance of DefaultRule
 

Uses of Symbolizer in org.geotools.styling.visitor
 

Methods in org.geotools.styling.visitor with parameters of type Symbolizer
 void DuplicatorStyleVisitor.visit(Symbolizer sym)
           
 



Copyright © GeoTools. All Rights Reserved.