| Class | Description |
|---|---|
| AbstractJunctionFilter |
Abstract base class for filters that are composed of multiple sub-filters.
|
| And |
A compound
Container.Filter that accepts an item if all of its filters accept
the item. |
| Between | |
| Compare |
Simple container filter comparing an item property value against a given
constant value.
|
| Compare.Equal |
A
Compare filter that accepts items for which the identified
property value is equal to value. |
| Compare.Greater |
A
Compare filter that accepts items for which the identified
property value is greater than value. |
| Compare.GreaterOrEqual |
A
Compare filter that accepts items for which the identified
property value is greater than or equal to value. |
| Compare.Less |
A
Compare filter that accepts items for which the identified
property value is less than value. |
| Compare.LessOrEqual |
A
Compare filter that accepts items for which the identified
property value is less than or equal to value. |
| IsNull |
Simple container filter checking whether an item property value is null.
|
| Like | |
| Not |
Negating filter that accepts the items rejected by another filter.
|
| Or |
A compound
Container.Filter that accepts an item if any of its filters accept
the item. |
| SimpleStringFilter |
Simple string filter for matching items that start with or contain a
specified string.
|
| Enum | Description |
|---|---|
| Compare.Operation |
| Exception | Description |
|---|---|
| UnsupportedFilterException |
Exception for cases where a container does not support a specific type of
filters.
|
Copyright © 2016 Vaadin Ltd. All rights reserved.