Uses of Interface
org.geotools.styling.FeatureTypeStyle

Packages that use FeatureTypeStyle
org.geotools.brewer.color   
org.geotools.kml   
org.geotools.renderer.lite A simple renderer implementation. 
org.geotools.renderer.lite.gridcoverage2d SLD 1.0 and SE RasterSymbolizer support classes 
org.geotools.styling Allows for symbolization of geospatial data. 
org.geotools.styling.builder   
org.geotools.styling.visitor   
org.geotools.swt.styling.simple   
 

Uses of FeatureTypeStyle in org.geotools.brewer.color
 

Methods in org.geotools.brewer.color that return FeatureTypeStyle
static FeatureTypeStyle StyleGenerator.createFeatureTypeStyle(Classifier classifier, Expression expression, Color[] colors, String typeId, GeometryDescriptor geometryAttrType, int elseMode, double opacity, Stroke defaultStroke)
          Merges a classifier, array of colors and other data into a FeatureTypeStyle object.
 

Methods in org.geotools.brewer.color with parameters of type FeatureTypeStyle
static void StyleGenerator.modifyFTS(FeatureTypeStyle fts, int ruleIndex, String styleExpression)
          Used to update an existing style based on the provided input.
 

Uses of FeatureTypeStyle in org.geotools.kml
 

Methods in org.geotools.kml that return FeatureTypeStyle
 FeatureTypeStyle StyleMap.get(URI uri)
           
 

Methods in org.geotools.kml with parameters of type FeatureTypeStyle
 void StyleMap.put(URI uri, FeatureTypeStyle style)
           
 

Uses of FeatureTypeStyle in org.geotools.renderer.lite
 

Methods in org.geotools.renderer.lite with parameters of type FeatureTypeStyle
 void OpacityFinder.visit(FeatureTypeStyle fts)
           
 void MetaBufferEstimator.visit(FeatureTypeStyle fts)
           
 

Uses of FeatureTypeStyle in org.geotools.renderer.lite.gridcoverage2d
 

Methods in org.geotools.renderer.lite.gridcoverage2d with parameters of type FeatureTypeStyle
 void StyleVisitorAdapter.visit(FeatureTypeStyle fts)
           
 

Uses of FeatureTypeStyle in org.geotools.styling
 

Methods in org.geotools.styling that return FeatureTypeStyle
 FeatureTypeStyle StyleFactoryImpl.createFeatureTypeStyle()
           
abstract  FeatureTypeStyle AbstractStyleFactory.createFeatureTypeStyle()
           
 FeatureTypeStyle StyleFactory.createFeatureTypeStyle()
           
 FeatureTypeStyle StyleFactoryImpl.createFeatureTypeStyle(Rule[] rules)
           
abstract  FeatureTypeStyle AbstractStyleFactory.createFeatureTypeStyle(Rule[] rules)
           
 FeatureTypeStyle StyleFactory.createFeatureTypeStyle(Rule[] rules)
           
 FeatureTypeStyle StyleBuilder.createFeatureTypeStyle(String typeName, Rule r)
          create a SimpleFeature type styler
 FeatureTypeStyle StyleBuilder.createFeatureTypeStyle(String typeName, Rule[] rules)
          create a SimpleFeature type styler see the SLD Spec for more details of scaleDenominators
 FeatureTypeStyle StyleBuilder.createFeatureTypeStyle(String featureTypeName, Symbolizer symbolizer)
          create a SimpleFeature type styler
 FeatureTypeStyle StyleBuilder.createFeatureTypeStyle(String featureTypeName, Symbolizer[] symbolizers)
          create a SimpleFeature type styler
 FeatureTypeStyle StyleBuilder.createFeatureTypeStyle(String typeName, Symbolizer[] symbolizers, double minScaleDenominator, double maxScaleDenominator)
          create a SimpleFeature type styler see the SLD Spec for more details of scaleDenominators
 FeatureTypeStyle StyleBuilder.createFeatureTypeStyle(String typeName, Symbolizer symbolizer, double minScaleDenominator, double maxScaleDenominator)
          create a SimpleFeature type styler see the SLD Spec for more details of scaleDenominators
 FeatureTypeStyle StyleBuilder.createFeatureTypeStyle(Symbolizer symbolizer)
          create a SimpleFeature type styler
 FeatureTypeStyle StyleBuilder.createFeatureTypeStyle(Symbolizer[] symbolizers, double minScaleDenominator, double maxScaleDenominator)
          create a SimpleFeature type styler see the SLD Spec for more details of scaleDenominators
 FeatureTypeStyle StyleBuilder.createFeatureTypeStyle(Symbolizer symbolizer, double minScaleDenominator, double maxScaleDenominator)
          create a SimpleFeature type styler see the SLD Spec for more details of scaleDenominators
 FeatureTypeStyle StyleFactoryImpl.featureTypeStyle(String name, Description description, Id definedFor, Set<Name> featureTypeNames, Set<SemanticType> types, List<Rule> rules)
           
 FeatureTypeStyle StyleFactory.featureTypeStyle(String name, Description description, Id definedFor, Set<Name> featureTypeNames, Set<SemanticType> types, List<Rule> rules)
           
static FeatureTypeStyle SLD.featureTypeStyle(StyledLayerDescriptor sld, SimpleFeatureType type)
          Retrieve the first FeatureTypeStyle defined in the given StyledLayerDescriptor object that matches the specified feature type
static FeatureTypeStyle SLD.featureTypeStyle(Style style, SimpleFeatureType type)
          Returns the feature type style in the style which matched a particular name.
static FeatureTypeStyle[] SLD.featureTypeStyles(StyledLayerDescriptor sld)
          Get the FeatureTypeStyles defined in the given StyledLayerDescriptor
 FeatureTypeStyle[] NamedStyleImpl.getFeatureTypeStyles()
          DOCUMENT ME!
 FeatureTypeStyle[] StyleImpl.getFeatureTypeStyles()
           
 FeatureTypeStyle[] Style.getFeatureTypeStyles()
          Deprecated. use featureTypeStyles().toArray( new FeatureTypeStyle[0] )
protected  FeatureTypeStyle SLDParser.parseFeatureTypeStyle(Node style)
          Internal parse method - made protected for unit testing
 

Methods in org.geotools.styling that return types with arguments of type FeatureTypeStyle
 List<FeatureTypeStyle> StyleImpl.featureTypeStyles()
           
 List<FeatureTypeStyle> Style.featureTypeStyles()
          FeatureTypeStyles rendered in order of appearance in this list.
 

Methods in org.geotools.styling with parameters of type FeatureTypeStyle
 void StyleImpl.addFeatureTypeStyle(FeatureTypeStyle type)
           
 void Style.addFeatureTypeStyle(FeatureTypeStyle type)
          Deprecated. Use featureTypeStyles().add( type )
static boolean SLD.isSemanticTypeMatch(FeatureTypeStyle fts, String regex)
          Test if the given FeatureTypeStyle object matches a regular expression
static LineSymbolizer SLD.lineSymbolizer(FeatureTypeStyle fts)
          Retrieve the first LineSymbolizer from the provided FeatureTypeStyle.
static double SLD.maxScale(FeatureTypeStyle fts)
          Returns the max scale of the default (first) rule
static double SLD.minScale(FeatureTypeStyle fts)
          Returns the min scale of the default (first) rule
static PointSymbolizer SLD.pointSymbolizer(FeatureTypeStyle fts)
          Retrieve the first PointSymbolizer from the provided FeatureTypeStyle.
static PolygonSymbolizer SLD.polySymbolizer(FeatureTypeStyle fts)
          Retrieve the first PolygonSymbolizer from the provided FeatureTypeStyle.
static RasterSymbolizer SLD.rasterSymbolizer(FeatureTypeStyle fts)
          Retrieve the first RasterSymbolizer from the provided FeatureTypeStyle.
 void StyleImpl.setFeatureTypeStyles(FeatureTypeStyle[] styles)
           
 void Style.setFeatureTypeStyles(FeatureTypeStyle[] types)
          Deprecated. Use featureTypeStyles().clear(); featureTypeStyles.addAll( ... )
protected static Symbolizer SLD.symbolizer(FeatureTypeStyle fts, Class SYMBOLIZER)
          Retrieve the first Symbolizer from the provided FeatureTypeStyle.
static TextSymbolizer SLD.textSymbolizer(FeatureTypeStyle fts)
          Retrieve the first TextSymbolizer from the provided FeatureTypeStyle.
 void StyleAttributeExtractor.visit(FeatureTypeStyle fts)
           
 void AbstractStyleVisitor.visit(FeatureTypeStyle fts)
           
 void StyleVisitor.visit(FeatureTypeStyle fts)
          Called when accept is called on a fetauretypestyle
 

Uses of FeatureTypeStyle in org.geotools.styling.builder
 

Methods in org.geotools.styling.builder that return FeatureTypeStyle
 FeatureTypeStyle FeatureTypeStyleBuilder.build()
           
 

Methods in org.geotools.styling.builder with parameters of type FeatureTypeStyle
 FeatureTypeStyleBuilder FeatureTypeStyleBuilder.reset(FeatureTypeStyle fts)
           
 

Uses of FeatureTypeStyle in org.geotools.styling.visitor
 

Methods in org.geotools.styling.visitor with parameters of type FeatureTypeStyle
 void DuplicatingStyleVisitor.visit(FeatureTypeStyle fts)
           
 

Uses of FeatureTypeStyle in org.geotools.swt.styling.simple
 

Methods in org.geotools.swt.styling.simple that return FeatureTypeStyle
static FeatureTypeStyle SLDs.getFeatureTypeStyle(Style s)
          gets the first FeatureTypeStyle
 

Methods in org.geotools.swt.styling.simple with parameters of type FeatureTypeStyle
static boolean SLDs.isSemanticTypeMatch(FeatureTypeStyle fts, String regex)
           
static double SLDs.maxScale(FeatureTypeStyle fts)
          Returns the max scale of the default rule, or Double.NaN if none is set
static double SLDs.minScale(FeatureTypeStyle fts)
          Returns the min scale of the default rule, or 0 if none is set
 



Copyright © 1996-2014 Geotools. All Rights Reserved.