Uses of Interface
org.geotools.styling.Stroke

Packages that use Stroke
org.geotools.brewer.color   
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   
 

Uses of Stroke in org.geotools.brewer.color
 

Methods in org.geotools.brewer.color with parameters of type Stroke
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.
 

Uses of Stroke in org.geotools.renderer.lite
 

Methods in org.geotools.renderer.lite with parameters of type Stroke
 void MetaBufferEstimator.visit(Stroke stroke)
           
 

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

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

Uses of Stroke in org.geotools.styling
 

Fields in org.geotools.styling declared as Stroke
static Stroke Stroke.DEFAULT
          Default Stroke capturing the defaults indicated by the standard.
static Stroke Stroke.NULL
          Null Stroke capturing the defaults indicated by the standard.
 

Methods in org.geotools.styling that return Stroke
 Stroke StyleBuilder.createStroke()
          create a default Stroke
 Stroke StyleBuilder.createStroke(Color color)
          Create a default stroke with the supplied color
 Stroke StyleBuilder.createStroke(Color color, double width)
          create a stroke with the supplied width and color
 Stroke StyleBuilder.createStroke(Color color, double width, double opacity)
          create a stroke with color, width and opacity supplied
 Stroke StyleBuilder.createStroke(Color color, double width, float[] dashArray)
          create a dashed line of color and width
 Stroke StyleBuilder.createStroke(Color color, double width, String lineJoin, String lineCap)
          create a stroke with color, width, linejoin type and lineCap type.
 Stroke StyleBuilder.createStroke(double width)
          create a default stroke with the supplied width
 Stroke StyleFactoryImpl.createStroke(Expression color, Expression width)
          A method to make a simple stroke of a provided color and width.
 Stroke StyleBuilder.createStroke(Expression color, Expression width)
          create a stroke with the color and width supplied
abstract  Stroke AbstractStyleFactory.createStroke(Expression color, Expression width)
          A convienice method to make a simple stroke
 Stroke StyleFactory.createStroke(Expression color, Expression width)
          A convienice method to make a simple stroke
 Stroke StyleFactoryImpl.createStroke(Expression color, Expression width, Expression opacity)
          A convienice method to make a simple stroke
 Stroke StyleBuilder.createStroke(Expression color, Expression width, Expression opacity)
          create a stroke with color, width and opacity supplied
abstract  Stroke AbstractStyleFactory.createStroke(Expression color, Expression width, Expression opacity)
          A convienice method to make a simple stroke
 Stroke StyleFactory.createStroke(Expression color, Expression width, Expression opacity)
          A convienice method to make a simple stroke
 Stroke StyleFactoryImpl.createStroke(Expression color, Expression width, Expression opacity, Expression lineJoin, Expression lineCap, float[] dashArray, Expression dashOffset, Graphic graphicFill, Graphic graphicStroke)
          creates a stroke
abstract  Stroke AbstractStyleFactory.createStroke(Expression color, Expression width, Expression opacity, Expression lineJoin, Expression lineCap, float[] dashArray, Expression dashOffset, Graphic graphicFill, Graphic graphicStroke)
          creates a stroke
 Stroke StyleFactory.createStroke(Expression color, Expression width, Expression opacity, Expression lineJoin, Expression lineCap, float[] dashArray, Expression dashOffset, Graphic graphicFill, Graphic graphicStroke)
          creates a stroke
 Stroke StyleFactoryImpl.getDefaultStroke()
           
abstract  Stroke AbstractStyleFactory.getDefaultStroke()
           
 Stroke StyleFactory.getDefaultStroke()
           
 Stroke PolygonSymbolizer.getStroke()
          Provides the graphical-symbolization parameter to use for the outline of the Polygon.
 Stroke Mark.getStroke()
          This paramterer defines which stroke style should be used when rendering the Mark.
 Stroke LineSymbolizer.getStroke()
          Provides the graphical-symbolization parameter to use for the linear geometry.
protected  Stroke SLDParser.parseStroke(Node root)
          Internal parse method - made protected for unit testing
 Stroke StyleFactoryImpl.stroke(Expression color, Expression opacity, Expression width, Expression join, Expression cap, float[] dashes, Expression offset)
           
 Stroke StyleFactory.stroke(Expression color, Expression opacity, Expression width, Expression join, Expression cap, float[] dashes, Expression offset)
           
 Stroke StyleFactoryImpl.stroke(GraphicFill fill, Expression color, Expression opacity, Expression width, Expression join, Expression cap, float[] dashes, Expression offset)
           
 Stroke StyleFactory.stroke(GraphicFill fill, Expression color, Expression opacity, Expression width, Expression join, Expression cap, float[] dashes, Expression offset)
           
 Stroke StyleFactoryImpl.stroke(GraphicStroke stroke, Expression color, Expression opacity, Expression width, Expression join, Expression cap, float[] dashes, Expression offset)
           
 Stroke StyleFactory.stroke(GraphicStroke stroke, Expression color, Expression opacity, Expression width, Expression join, Expression cap, float[] dashes, Expression offset)
           
static Stroke SLD.stroke(LineSymbolizer sym)
          Retrieves the Stroke from a LineSymbolizer.
static Stroke SLD.stroke(PointSymbolizer sym)
          Retrieves the Stroke from a PointSymbolizer.
static Stroke SLD.stroke(PolygonSymbolizer sym)
          Retrieves the Stroke from a PolygonSymbolizer.
 

Methods in org.geotools.styling with parameters of type Stroke
static Color SLD.color(Stroke stroke)
          Retrieve the color of a stroke object
 LineSymbolizer StyleBuilder.createLineSymbolizer(Stroke stroke)
          create a LineSymbolizer
 LineSymbolizer StyleFactoryImpl.createLineSymbolizer(Stroke stroke, String geometryPropertyName)
           
 LineSymbolizer StyleBuilder.createLineSymbolizer(Stroke stroke, String geometryPropertyName)
          create a LineSymbolizer
abstract  LineSymbolizer AbstractStyleFactory.createLineSymbolizer(Stroke stroke, String geometryPropertyName)
           
 LineSymbolizer StyleFactory.createLineSymbolizer(Stroke stroke, String geometryPropertyName)
           
 Mark StyleBuilder.createMark(Expression wellKnownName, Fill fill, Stroke stroke)
          create a mark with the supplied fill and stroke
 Mark StyleFactoryImpl.createMark(Expression wellKnownName, Stroke stroke, Fill fill, Expression size, Expression rotation)
           
abstract  Mark AbstractStyleFactory.createMark(Expression wellKnownName, Stroke stroke, Fill fill, Expression size, Expression rotation)
           
 Mark StyleFactory.createMark(Expression wellKnownName, Stroke stroke, Fill fill, Expression size, Expression rotation)
           
 Mark StyleBuilder.createMark(String wellKnownName, Fill fill, Stroke stroke)
          create a mark with the supplied fill and stroke
 PolygonSymbolizer StyleBuilder.createPolygonSymbolizer(Stroke stroke, Fill fill)
          create a polygon symbolizer
 PolygonSymbolizer StyleFactoryImpl.createPolygonSymbolizer(Stroke stroke, Fill fill, String geometryPropertyName)
           
 PolygonSymbolizer StyleBuilder.createPolygonSymbolizer(Stroke stroke, Fill fill, String geometryPropertyName)
          create a polygon symbolizer
abstract  PolygonSymbolizer AbstractStyleFactory.createPolygonSymbolizer(Stroke stroke, Fill fill, String geometryPropertyName)
           
 PolygonSymbolizer StyleFactory.createPolygonSymbolizer(Stroke stroke, Fill fill, String geometryPropertyName)
           
static double SLD.opacity(Stroke stroke)
          Retrieve the opacity from a Stroke object.
 void StyleAttributeExtractor.visit(Stroke stroke)
           
 void StyleVisitor.visit(Stroke stroke)
          Called when accept is called on a stroke
static int SLD.width(Stroke stroke)
          Retrieve the width of a Stroke object.
 

Constructors in org.geotools.styling with parameters of type Stroke
BasicLineStyle(Stroke stroke)
           
BasicPolygonStyle(Fill fill, Stroke stroke)
           
LineSymbolizerImpl(Stroke stroke, Expression offset, Unit<Length> uom, String geom, String name, Description desc)
           
PolygonSymbolizerImpl(Stroke stroke, Fill fill, Displacement disp, Expression offset, Unit<Length> uom, String geom, String name, Description desc)
           
 

Uses of Stroke in org.geotools.styling.builder
 

Methods in org.geotools.styling.builder that return Stroke
 Stroke StrokeBuilder.build()
           
 

Methods in org.geotools.styling.builder with parameters of type Stroke
 StyledLayerDescriptorBuilder StyledLayerDescriptorBuilder.reset(Stroke stroke)
          Reset builder to provided original stroke.
 StrokeBuilder<P> StrokeBuilder.reset(Stroke stroke)
          Reset builder to provided original stroke.
 

Uses of Stroke in org.geotools.styling.visitor
 

Methods in org.geotools.styling.visitor that return Stroke
protected  Stroke DuplicatingStyleVisitor.copy(Stroke stroke)
          Null safe copy of stroke.
 

Methods in org.geotools.styling.visitor with parameters of type Stroke
protected  Stroke DuplicatingStyleVisitor.copy(Stroke stroke)
          Null safe copy of stroke.
protected  void UomRescaleStyleVisitor.rescaleStroke(Stroke stroke, double mapScale, Unit<Length> uom)
          Used to rescale the provided stroke.
 void RescaleStyleVisitor.visit(Stroke stroke)
          Increase stroke width.
 void DuplicatingStyleVisitor.visit(Stroke stroke)
           
 



Copyright © 1996-2010 Geotools. All Rights Reserved.