| Interface | Description |
|---|---|
| IFilter<DATATYPE> |
A generic filter interface for simple object selection.
|
| IFilterWithParameter<DATATYPE,PARAMTYPE> |
A generic filter interface for simple object selection based on a parameter.
|
| ISerializableFilter<DATATYPE> |
An extension to
IFilter so that implementing classes are also
Serializable. |
| ISerializableFilterWithParameter<DATATYPE,PARAMTYPE> |
An extension to
IFilterWithParameter so that implementing classes are
also Serializable. |
| Class | Description |
|---|---|
| AbstractFilter<DATATYPE> |
An abstract implementation of
IFilter that has an optional nested
filter. |
| AbstractSerializableFilter<DATATYPE> |
An abstract implementation of
ISerializableFilter that has an
optional nested filter. |
| FilterChainAND<DATATYPE> | |
| FilterChainOR<DATATYPE> | |
| FilterFalse<DATATYPE> |
A filter implementation that always returns
false. |
| FilterInverted<DATATYPE> |
A filter implementation that inverts the result of another filter.
|
| FilterNotNull<DATATYPE> |
A filter implementation where all non-
null values match. |
| FilterNull<DATATYPE> |
A filter implementation where all
null values match. |
| FilterTrue<DATATYPE> |
A filter implementation that always returns
true. |
| SerializableFilterChainAND<DATATYPE> |
An implementation of
ISerializableFilter that chains multiple
instances of ISerializableFilter with an AND operator. |
| SerializableFilterChainOR<DATATYPE> |
An implementation of
ISerializableFilter that chains multiple
instances of ISerializableFilter with an OR operator. |
| SerializableFilterInverted<DATATYPE> |
A filter implementation that inverts the result of another filter.
|
Copyright © 2006–2015 phloc systems. All rights reserved.