Uses of Class
org.geotools.filter.IllegalFilterException
-
Packages that use IllegalFilterException Package Description org.geotools.brewer.color org.geotools.feature.visitor org.geotools.filter org.geotools.styling Allows for symbolization of geospatial data. -
-
Uses of IllegalFilterException in org.geotools.brewer.color
Methods in org.geotools.brewer.color that throw IllegalFilterException Modifier and Type Method Description 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.static void
StyleGenerator. modifyFTS(FeatureTypeStyle fts, int ruleIndex, String styleExpression)
Used to update an existing style based on the provided input.static Filter
StyleGenerator. toExplicitFilter(String styleExpression, SimpleFeatureType featureType, String attributeTypeName)
Creates a filter with each value explicitly defined.static Filter
StyleGenerator. toExplicitFilter(String styleExpression, Expression attribExpr)
Creates a filter with each value explicitly defined.static Filter[]
StyleGenerator. toFilter(String[] styleExpression, SimpleFeatureType[] featureType, String[] attributeTypeName)
Converts an array of styleExpressions and attributes into Filtersstatic Filter
StyleGenerator. toRangedFilter(String styleExpression, SimpleFeatureType featureType, String attributeTypeName, boolean upperBoundClosed)
Creates a filter for a range of values. -
Uses of IllegalFilterException in org.geotools.feature.visitor
Constructors in org.geotools.feature.visitor that throw IllegalFilterException Constructor Description AverageVisitor(int attributeTypeIndex, SimpleFeatureType type)
Constructor class for the AverageVisitor using AttributeDescriptor IDAverageVisitor(String attrName, SimpleFeatureType type)
Constructor class for the AverageVisitor using AttributeDescriptor NameAverageVisitor(Expression expr)
Constructor class for the AverageVisitor using an expressionMaxVisitor(int attributeTypeIndex, SimpleFeatureType type)
MaxVisitor(String attrName, SimpleFeatureType type)
MaxVisitor(Expression expr)
MedianVisitor(int attributeTypeIndex, SimpleFeatureType type)
MedianVisitor(String attrName, SimpleFeatureType type)
MedianVisitor(Expression expr)
MinVisitor(int attributeTypeIndex, SimpleFeatureType type)
MinVisitor(String attrName, SimpleFeatureType type)
MinVisitor(Expression expr)
SumAreaVisitor(int attributeTypeIndex, SimpleFeatureType type)
SumAreaVisitor(String attrName, SimpleFeatureType type)
SumAreaVisitor(Expression expr)
SumVisitor(int attributeTypeIndex, SimpleFeatureType type)
SumVisitor(String attrName, SimpleFeatureType type)
SumVisitor(Expression expr)
UniqueCountVisitor(int attributeTypeIndex, SimpleFeatureType type)
UniqueCountVisitor(String attrName, SimpleFeatureType type)
UniqueVisitor(int attributeTypeIndex, SimpleFeatureType type)
UniqueVisitor(String attrName, SimpleFeatureType type)
UniqueVisitor(SimpleFeatureType type, Integer... indexes)
UniqueVisitor(SimpleFeatureType type, String... attributeNames)
-
Uses of IllegalFilterException in org.geotools.filter
Methods in org.geotools.filter that throw IllegalFilterException Modifier and Type Method Description void
LogicFilterImpl. addFilter(Filter filter)
Adds a sub filter to this filter.Filter
FilterSAXParser. create()
Creates the filter held in the parser.Filter
LogicSAXParser. create()
Creates the the logic filter if in a complete state.void
ExpressionSAXParser. end(String message)
Called when the filter handler has reached the end of an expressionvoid
LogicSAXParser. end(short logicType)
To be called when the sax parser reaches the end of a logic filter.void
FilterSAXParser. expression(Expression expression)
Adds the passed in expression to the current filter.void
ExpressionSAXParser. geometry(Geometry geometry)
Gets geometry.void
ExpressionSAXParser. message(String message, boolean convertToNumber)
Handles incoming characters.void
FilterSAXParser. setDistance(String distance, String units)
This sets the distance for a GeometryDistanceFilter.void
ExpressionSAXParser. start(String declaredType, Attributes atts)
Initializes the factory to create a new expression.void
FilterSAXParser. start(short filterType)
Handles all incoming generic string 'messages,' including a message to create the filter, based on the XML tag that represents the start of the filter.void
LogicSAXParser. start(short logicType)
To be called by a parser to start the creation of a logic filter.void
FilterSAXParser. value(String message)
Handles all incoming generic string 'messages,' including a message to create the filter, based on the XML tag that represents the start of the filter.Constructors in org.geotools.filter that throw IllegalFilterException Constructor Description AttributeExpressionImpl(SimpleFeatureType schema, String attPath)
Constructor with schema and path to the attribute.LiteralExpressionImpl(Object literal)
Constructor with literal.LogicFilterImpl(Filter filter1, Filter filter2, short filterType)
Convenience constructor to create an AND/OR logic filter. -
Uses of IllegalFilterException in org.geotools.styling
Methods in org.geotools.styling that throw IllegalFilterException Modifier and Type Method Description Expression
StyleBuilder. attributeExpression(String attributeName)
create an attribute expressionStyle
StyleBuilder. buildClassifiedStyle(SimpleFeatureCollection fc, String name, String[] colors, SimpleFeatureType schema)
given a feature collection and an array of colours build a style with the given number of classes on the named columnTextSymbolizer
StyleBuilder. createTextSymbolizer(Color color, Font[] fonts, String attributeName)
create a textsymbolizerTextSymbolizer
StyleBuilder. createTextSymbolizer(Color color, Font font, String attributeName)
create a textsymbolizerExpression
StyleBuilder. literalExpression(Object value)
create a literal expression representing the value
-