| Package | com.esri.bacore.thematicmapping.extensionClasses |
| Class | public class MatchAttributeFilter |
| Inheritance | MatchAttributeFilter Object |
| Implements | IAttributesFilter |
| Property | Defined By | ||
|---|---|---|---|
| fieldName : String [read-only]
Attribute field name to apply the filter to. | MatchAttributeFilter | ||
| maximumValue : Number [read-only]
The upper bound for matching range of values. | MatchAttributeFilter | ||
| minimumValue : Number [read-only]
The low bound for matching range of values. | MatchAttributeFilter | ||
| Method | Defined By | ||
|---|---|---|---|
MatchAttributeFilter(fieldName:String, minimumValue:Number, maximumValue:Number)
Creates a new instance of the MatchAttributeFilter class. | MatchAttributeFilter | ||
testAttributes(attributes:Object, attributesProvider:TMAttributesProvider, strictMatch:Boolean):AttributesFilterResult
Test feature attributes to match filtering criteria of all inner filters. | MatchAttributeFilter | ||
| fieldName | property |
fieldName:String [read-only] Attribute field name to apply the filter to.
public function get fieldName():String| maximumValue | property |
maximumValue:Number [read-only]
The upper bound for matching range of values.
The NaN value or Infinity means missing upper bound.
public function get maximumValue():Number| minimumValue | property |
minimumValue:Number [read-only]
The low bound for matching range of values.
The NaN value or -Infinity means missing low bound.
public function get minimumValue():Number| MatchAttributeFilter | () | Constructor |
public function MatchAttributeFilter(fieldName:String, minimumValue:Number, maximumValue:Number)Creates a new instance of the MatchAttributeFilter class.
ParametersfieldName:String — Attribute field name to apply the filter to.
| |
minimumValue:Number — The low bound for matching range of values.
| |
maximumValue:Number — The upper bound for matching range of values.
|
| testAttributes | () | method |
public function testAttributes(attributes:Object, attributesProvider:TMAttributesProvider, strictMatch:Boolean):AttributesFilterResultTest feature attributes to match filtering criteria of all inner filters.
Parameters
attributes:Object — Attributes of feature.
| |
attributesProvider:TMAttributesProvider — Provider of feature attributes.
| |
strictMatch:Boolean — True value means that feature attributes should match all filtering criteria.
|
AttributesFilterResult — Result of testing.
|