Uses of Class
org.geotools.filter.text.cql2.CQLException
-
Packages that use CQLException Package Description org.geootols.filter.text.cql_2 org.geotools.filter.text.commons org.geotools.filter.text.cql2 Common Query Language (CQL)org.geotools.filter.text.cqljson org.geotools.filter.text.ecql Extended Common Query Language (ECQL)org.geotools.gce.imagemosaic.catalog.oracle org.geotools.gce.imagemosaic.catalog.postgis org.geotools.gce.imagemosaic.catalog.sqlserver org.geotools.process.vector Vector processing support for the GeoTools library. -
-
Uses of CQLException in org.geootols.filter.text.cql_2
Methods in org.geootols.filter.text.cql_2 that throw CQLException Modifier and Type Method Description void
CQL2Compiler. compileExpression()
compiles source to produce a Expressionvoid
CQL2Compiler. compileFilter()
compile source to produce a Filter.void
CQL2Compiler. compileFilterList()
Compiles a list of filtersExpression
CQL2Compiler. getExpression()
Return the expression resultant of compiling processFilter
CQL2Compiler. getFilter()
Return the filter resultant of compiling processList<Filter>
CQL2Compiler. getFilterList()
Returns the list of Filters built as the result of calling {@link #FilterListCompilationUnit()()}static Expression
CQL2. toExpression(String cql2Expression)
Parses the input string in CQL2 format into an Expression, using the systems defaultFilterFactory
implementation.static Expression
CQL2. toExpression(String cql2Expression, FilterFactory filterFactory)
Parses the input string in CQL2 format and makes the correspondent Expression , using the provided FilterFactory.static Filter
CQL2. toFilter(String cql2Predicate)
Parses the input string in CQL2 format into a Filter, using the systems default FilterFactory implementation.static Filter
CQL2. toFilter(String cql2Predicate, FilterFactory filterFactory)
Parses the input string in CQL2 format into a Filter, using the provided FilterFactory. -
Uses of CQLException in org.geotools.filter.text.commons
Methods in org.geotools.filter.text.commons that throw CQLException Modifier and Type Method Description protected Literal
AbstractFilterBuilder. asLiteralDate(String cqlDate)
protected Literal
AbstractFilterBuilder. asLiteralDateTime(String cqlDateTime)
Transforms the cqlDateTime to a literal date.BinaryExpression
AbstractFilterBuilder. buildAddExpression()
After
AbstractFilterBuilder. buildAfterDate()
Build an After date filterAfter
AbstractFilterBuilder. buildAfterPeriod()
Builds an after period filterFilter
AbstractFilterBuilder. buildAndFilter()
BBOX
AbstractFilterBuilder. buildBBox()
BBOX
AbstractFilterBuilder. buildBBoxWithCRS()
Before
AbstractFilterBuilder. buildBeforeDate()
Or
AbstractFilterBuilder. buildBeforeOrDuring()
Builds an Or filter composed of Before and During filters.Before
AbstractFilterBuilder. buildBeforePeriod()
PropertyIsBetween
AbstractFilterBuilder. buildBetween()
builds PropertyIsBetween filterPropertyName
AbstractFilterBuilder. buildCompoundAttribute(int nodeSimpleAttr, String nodeAttrSeparator)
Literal
AbstractFilterBuilder. buildDateExpression(IToken token)
Literal
AbstractFilterBuilder. buildDateTimeExpression(IToken token)
Creates a literal with date timeLiteral
AbstractFilterBuilder. buildDistanceUnit(IToken token)
BinaryExpression
AbstractFilterBuilder. buildDivideExpression()
Or
AbstractFilterBuilder. buildDuringOrAfter()
Builds an Or filter composed of During and After.During
AbstractFilterBuilder. buildDuringPeriod()
Literal
AbstractFilterBuilder. buildEnvelope(IToken token)
Returns the EnvelopePropertyIsEqualTo
AbstractFilterBuilder. buildEquals()
Function
AbstractFilterBuilder. buildFunction(int functionNode)
Builds a function expressionLiteral
AbstractFilterBuilder. buildGeometry(IToken geometry)
Builds geometryPropertyIsGreaterThan
AbstractFilterBuilder. buildGreater()
PropertyIsGreaterThanOrEqualTo
AbstractFilterBuilder. buildGreaterOrEqual()
String
AbstractFilterBuilder. buildIdentifier(int nodeIdentifier)
PropertyIsLessThan
AbstractFilterBuilder. buildLess()
PropertyIsLessThanOrEqualTo
AbstractFilterBuilder. buildLessOrEqual()
PropertyIsLike
AbstractFilterBuilder. buildLikeFilter(boolean matchCase)
Builds a like filterBinaryExpression
AbstractFilterBuilder. buildMultiplyExpression()
Not
AbstractFilterBuilder. buildNotBetween()
Filter
AbstractFilterBuilder. buildNotFilter()
Not
AbstractFilterBuilder. buildNotLikeFilter(boolean matchCase)
Filter
AbstractFilterBuilder. buildOrFilter()
PeriodNode
AbstractFilterBuilder. buildPeriodBetweenDates()
builds a PeriodNode (date1,date2)PeriodNode
AbstractFilterBuilder. buildPeriodDateAndDuration()
builds a Period with (date,duration)PeriodNode
AbstractFilterBuilder. buildPeriodDurationAndDate()
builds a Period Node with (duration,date).Not
AbstractFilterBuilder. buildPorpertyNotIsNull()
And
AbstractFilterBuilder. buildPropertyBetweenDates()
Create an AND filter with property between dates of period.PropertyIsEqualTo
AbstractFilterBuilder. buildPropertyExists()
Creates PropertyIsEqualTo with PropertyExists predicatePropertyIsGreaterThanOrEqualTo
AbstractFilterBuilder. buildPropertyIsGTEFirstDate()
Builds PropertyIsGreaterThanOrEqualTo begin of periodPropertyIsGreaterThan
AbstractFilterBuilder. buildPropertyIsGTLastDate()
creates PropertyIsGreaterThan end date of periodPropertyIsLessThanOrEqualTo
AbstractFilterBuilder. buildPropertyIsLTELastDate()
PropertyIsLessThan
AbstractFilterBuilder. buildPropertyIsLTFirsDate()
PropertyIsNull
AbstractFilterBuilder. buildPropertyIsNull()
Builds property is null filterPropertyName
AbstractFilterBuilder. buildSimpleAttribute()
DistanceBufferOperator
AbstractFilterBuilder. buildSpatialBeyondFilter()
BinarySpatialOperator
AbstractFilterBuilder. buildSpatialContainsFilter()
BinarySpatialOperator
AbstractFilterBuilder. buildSpatialCrossesFilter()
BinarySpatialOperator
AbstractFilterBuilder. buildSpatialDisjointFilter()
DistanceBufferOperator
AbstractFilterBuilder. buildSpatialDWithinFilter()
BinarySpatialOperator
AbstractFilterBuilder. buildSpatialEqualFilter()
BinarySpatialOperator
AbstractFilterBuilder. buildSpatialIntersectsFilter()
BinarySpatialOperator
AbstractFilterBuilder. buildSpatialOverlapsFilter()
PropertyIsEqualTo
AbstractFilterBuilder. buildSpatialRelateFilter()
BinarySpatialOperator
AbstractFilterBuilder. buildSpatialTouchesFilter()
BinarySpatialOperator
AbstractFilterBuilder. buildSpatialWithinFilter()
BinaryExpression
AbstractFilterBuilder. buildSubtractExression()
TEquals
AbstractFilterBuilder. buildTEquals()
BUild a TEquals date filter.Literal
AbstractFilterBuilder. buildTolerance()
void
ICompiler. compileExpression()
Compiles the source string to produce anExpression
.void
ICompiler. compileFilter()
Compiles the source string to produce aFilter
.void
ICompiler. compileFilterList()
Expression
AbstractFilterBuilder. getExpression()
Expression
ICompiler. getExpression()
The resultantExpression
of the compilation.Filter
AbstractFilterBuilder. getFilter()
Filter
ICompiler. getFilter()
The resultant filter of the compilationList<Filter>
AbstractFilterBuilder. getFilterList()
List<Filter>
ICompiler. getFilterList()
Return the compilation result.ICompiler
AbstractCompilerFactory. makeCompiler(String predicate, FilterFactory filterFactory)
Initializes and create the new compilerstatic Expression
CompilerUtil. parseExpression(String source, AbstractCompilerFactory compilerFactory, FilterFactory filterFactory)
Parses the expression present on source and make an expression object.static Expression
CompilerUtil. parseExpression(Language language, String predicate)
Makes Expressions for the predicatestatic Expression
CompilerUtil. parseExpression(Language language, String predicate, FilterFactory filterFactory)
Makes Expressions for the predicatestatic Filter
CompilerUtil. parseFilter(String source, AbstractCompilerFactory compilerFactory, FilterFactory filterFactory)
Parses the predicate present on source and makes the filter.static Filter
CompilerUtil. parseFilter(Language language, String predicate)
Makes the Filter for the predicatestatic Filter
CompilerUtil. parseFilter(Language language, String predicate, FilterFactory filterFactory)
Returns the filter resultant of the parsing process of predicate expression.static List<Filter>
CompilerUtil. parseFilterList(String predicateSequence, AbstractCompilerFactory compilerFactory, FilterFactory filterFactory)
Parses the sequence of predicate and makes the filter liststatic List<Filter>
CompilerUtil. parseFilterList(Language language, String predicate)
Makes a list of filters extracted from the sequence of search predicatesstatic List<Filter>
CompilerUtil. parseFilterList(Language language, String predicate, FilterFactory filterFactory)
Makes a list of filters extracted from the sequence of search predicatesdouble
BuildResultStack. popDoubleValue()
Expression
BuildResultStack. popExpression()
Filter
BuildResultStack. popFilter()
Geometry
BuildResultStack. popGeometry()
String
BuildResultStack. popIdentifier()
String
BuildResultStack. popIdentifierPart()
int
BuildResultStack. popIntegerValue()
Literal
BuildResultStack. popLiteral()
Period
BuildResultStack. popPeriod()
PeriodNode
BuildResultStack. popPeriodNode()
PropertyName
BuildResultStack. popPropertyName()
Result
BuildResultStack. popResult()
String
BuildResultStack. popStringValue()
-
Uses of CQLException in org.geotools.filter.text.cql2
Methods in org.geotools.filter.text.cql2 that throw CQLException Modifier and Type Method Description void
CQLCompiler. compileExpression()
compile source to produce a Expressionvoid
CQLCompiler. compileFilter()
compile source to produce a Filter.void
CQLCompiler. compileFilterList()
Expression
CQLCompiler. getExpression()
Return the expression resultant of compiling processFilter
CQLCompiler. getFilter()
Return the filter resultant of compiling processList<Filter>
CQLCompiler. getFilterList()
Returns the list of Filters built as the result of calling#MultipleCompilationUnit()
static Expression
CQL. toExpression(String cqlExpression)
Parses the input string in OGC CQL format into an Expression, using the systems defaultFilterFactory
implementation.static Expression
CQL. toExpression(String cqlExpression, FilterFactory filterFactory)
Parses the input string in OGC CQL format into anExpression
, using the providedFilterFactory
.static Filter
CQL. toFilter(String cqlPredicate)
Parses the input string in OGC CQL format into a Filter, using the systems default FilterFactory implementation.static Filter
CQL. toFilter(String cqlPredicate, FilterFactory filterFactory)
Parses the input string in OGC CQL format into a Filter, using the provided FilterFactory.static List<Filter>
CQL. toFilterList(String cqlFilterList)
Parses the input string, which has to be a list of OGC CQL predicates separated by;
into aList
ofFilter
s, using the provided FilterFactory.static List<Filter>
CQL. toFilterList(String cqlSequencePredicate, FilterFactory filterFactory)
Parses the input string which has to be a list of OGC CQL predicates separated by ";
" into aList
ofFilter
s, using the provided FilterFactory. -
Uses of CQLException in org.geotools.filter.text.cqljson
Methods in org.geotools.filter.text.cqljson that throw CQLException Modifier and Type Method Description void
CQLJsonCompiler. compileExpression()
Is this needed for CQL-JSON?void
CQLJsonCompiler. compileFilter()
Compiles Filter from predicates source jsonvoid
CQLJsonCompiler. compileFilterList()
Is this needed for CQL-JSON?Filter
CQLJsonCompiler. convertToFilter(JsonNode cql2Expression)
Converts JSON Node into GT FilterExpression
CQLJsonCompiler. getExpression()
Is this needed for CQL-JSON?Filter
CQLJsonCompiler. getFilter()
Get compiled filterList<Filter>
CQLJsonCompiler. getFilterList()
Is this needed for CQL-JSON?static Expression
CQL2Json. toExpression(String cql2Json)
Converts JSON String toExpression
object.static Filter
CQL2Json. toFilter(String cql2Json)
Converts CQL2-Json to aFilter
object. -
Uses of CQLException in org.geotools.filter.text.ecql
Methods in org.geotools.filter.text.ecql that throw CQLException Modifier and Type Method Description void
ECQLCompiler. compileExpression()
compiles source to produce a Expressionvoid
ECQLCompiler. compileFilter()
compile source to produce a Filter.void
ECQLCompiler. compileFilterList()
Compiles a list of filtersExpression
ECQLCompiler. getExpression()
Return the expression resultant of compiling processFilter
ECQLCompiler. getFilter()
Return the filter resultant of compiling processList<Filter>
ECQLCompiler. getFilterList()
Returns the list of Filters built as the result of calling {@link #FilterListCompilationUnit()()}static Expression
ECQL. toExpression(String ecqlExpression)
Parses the input string in ECQL format into an Expression, using the systems defaultFilterFactory
implementation.static Expression
ECQL. toExpression(String ecqlExpression, FilterFactory filterFactory)
Parses the input string in ECQL format and makes the correspondent Expression , using the provided FilterFactory.static Filter
ECQL. toFilter(String ecqlPredicate)
Parses the input string in ECQL format into a Filter, using the systems default FilterFactory implementation.static Filter
ECQL. toFilter(String ecqlPredicate, FilterFactory filterFactory)
Parses the input string in ECQL format into a Filter, using the provided FilterFactory.static List<Filter>
ECQL. toFilterList(String ecqlSequencePredicate)
static List<Filter>
ECQL. toFilterList(String ecqlSequencePredicate, FilterFactory filterFactory)
-
Uses of CQLException in org.geotools.gce.imagemosaic.catalog.oracle
Constructors in org.geotools.gce.imagemosaic.catalog.oracle that throw CQLException Constructor Description AbstractFeatureTypeMapper(SimpleFeatureType featureType, int maxLength)
OracleFeatureTypeMapper(SimpleFeatureType featureType)
Create a newOracleFeatureTypeMapper
on top of the original featureType provided -
Uses of CQLException in org.geotools.gce.imagemosaic.catalog.postgis
Constructors in org.geotools.gce.imagemosaic.catalog.postgis that throw CQLException Constructor Description PostgisFeatureTypeMapper(SimpleFeatureType featureType)
Create a newPostgisFeatureTypeMapper
on top of the original featureType provided -
Uses of CQLException in org.geotools.gce.imagemosaic.catalog.sqlserver
Constructors in org.geotools.gce.imagemosaic.catalog.sqlserver that throw CQLException Constructor Description SQLServerTypeMapper(SimpleFeatureType featureType)
Create a newSQLServerTypeMapper
on top of the original featureType provided -
Uses of CQLException in org.geotools.process.vector
Methods in org.geotools.process.vector that throw CQLException Modifier and Type Method Description static Coordinate[]
BarnesSurfaceProcess. extractPoints(SimpleFeatureCollection obsPoints, String attrName, MathTransform trans, int dataLimit)
protected void
HeatmapProcess. extractPoints(SimpleFeatureCollection obsPoints, String attrName, MathTransform trans, HeatmapSurface heatMap)
Extract points from a feature collection, and stores them in the heatmap
-