Inherited by ERXBetweenQualifier, ERXInQualifier, ERXRegExQualifier, ERXToManyQualifier, and ERXQuicksilverQualifier.

Public Member Functions | |
| ERXAndQualifier | and (EOQualifier...qualifiers) |
| ERXKeyValueQualifier (String key, NSSelector selector, Object value) | |
| void | filter (NSMutableArray<?> array) |
| ERXNotQualifier | not () |
| ERXOrQualifier | or (EOQualifier...qualifiers) |
Package Functions | |
| public< T > NSArray< T > | filtered (NSArray< T > array) |
| public< T > T | first (NSArray< T > array) |
| public< T > T | one (NSArray< T > array) |
| public< T > T | requiredOne (NSArray< T > array) |
| ERXKeyValueQualifier | ( | String | key, | |
| NSSelector | selector, | |||
| Object | value | |||
| ) |
| ERXAndQualifier and | ( | EOQualifier... | qualifiers | ) |
Returns a new qualifier that represents this qualifier and'd to the given list of qualifiers.
| qualifiers | the qualifiers to and with this qualifier |
Implements IERXChainableQualifier.
| void filter | ( | NSMutableArray<?> | array | ) |
Equivalent to EOQualifier.filterArrayWithQualifier(NSMutableArray, EOQualfier)
| array | the array to filter (in place) |
Implements IERXChainableQualifier.
| public<T> NSArray<T> filtered | ( | NSArray< T > | array | ) | [package] |
Equivalent to EOQualifier.filteredArrayWithQualifier(NSArray, EOQualifier)
| <T> | the type of the array | |
| array | the array to filter |
Implements IERXChainableQualifier.
| public<T> T first | ( | NSArray< T > | array | ) | [package] |
Equivalent to EOQualifier.first(NSMutableArray, EOQualfier)
| <T> | the type of the array | |
| array | the array to filter (in place) |
Implements IERXChainableQualifier.
| ERXNotQualifier not | ( | ) |
Returns a new qualifier that represents this qualifier not'd.
Implements IERXChainableQualifier.
| public<T> T one | ( | NSArray< T > | array | ) | [package] |
Equivalent to EOQualifier.one(NSMutableArray, EOQualfier)
| <T> | the type of the array | |
| array | the array to filter (in place) |
| IllegalStateException | if more than one object matched |
Implements IERXChainableQualifier.
| ERXOrQualifier or | ( | EOQualifier... | qualifiers | ) |
Returns a new qualifier that represents this qualifier or'd with the given list of qualifiers.
| qualifiers | the qualifiers to or with this qualifier |
Implements IERXChainableQualifier.
| public<T> T requiredOne | ( | NSArray< T > | array | ) | [package] |
Equivalent to EOQualifier.requiredOne(NSArray, EOQualfier)
| <T> | the type of the array | |
| array | the array to filter (in place) |
| IllegalStateException | if more than one object matched | |
| NoSuchElementException | if no objects matched |
Implements IERXChainableQualifier.
1.5.8