Record Class DimensionFilterSplitter
Splits a GeoTools filter into dimension-backed predicates and a residual post-filter. Recognized predicates on time,
elevation, and additional dimensions are converted into
DimensionFilter instances. All remaining predicates
are preserved for in-memory evaluation during slice iteration.
The splitting process relies on a SplittingVisitor implementation that traverses the filter tree and identifies supported predicates. The resulting pre- and post-filters are collected into a SplitFilterResult which is then processed by a PreFilterDimensionExtractor to produce the final dimension filters and post-filter.
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic final recordHolds a property/literal pair extracted from a binary comparison.static final recordHolds a comparison pair with the normalized comparison direction.static enumComparison operators used while translating binary predicates into ranges. -
Constructor Summary
ConstructorsConstructorDescriptionCreates an instance of aDimensionFilterSplitterrecord class. -
Method Summary
Modifier and TypeMethodDescriptionbindings()Returns the value of thebindingsrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.Splits the filter into recognized dimension filters and a residual post-filter.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
DimensionFilterSplitter
Creates an instance of aDimensionFilterSplitterrecord class.- Parameters:
bindings- the value for thebindingsrecord component
-
-
Method Details
-
split
Splits the filter into recognized dimension filters and a residual post-filter. -
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared withObjects::equals(Object,Object). -
bindings
Returns the value of thebindingsrecord component.- Returns:
- the value of the
bindingsrecord component
-