public interface Filter
Modifier and Type | Method and Description |
---|---|
void |
configure(FilterSettings settings)
Configures the filter.
|
FilterSettings |
createSettings()
Creates a
FilterSettings object that is suitable for configuring the filter. |
java.lang.String |
getId()
Gets the filter's ID.
|
boolean |
isActive()
Checks if the filter is active.
|
boolean |
isMatching(CellValue cellData)
Checks if the specified data row matches the filter (= should be included in the
result set due to current filter settings).
|
java.lang.String getId()
FilterSettings createSettings()
FilterSettings
object that is suitable for configuring the filter.FilterSettings
objectvoid configure(FilterSettings settings)
settings
- the filter's settingsboolean isActive()
true
if the filter is activeboolean isMatching(CellValue cellData)
Checks if the specified data row matches the filter (= should be included in the result set due to current filter settings).
Note that this method may only be called if this.isActive() == true
.
cellData
- The data to check"Copyright © 2010 - 2020 Adobe Systems Incorporated. All Rights Reserved"