public interface IERXChainableQualifier
Modifier and Type | Method and Description |
---|---|
ERXAndQualifier |
and(EOQualifier... qualifiers)
Returns a new qualifier that represents this qualifier and'd to the given
list of qualifiers.
|
void |
filter(NSMutableArray<?> array)
Equivalent to EOQualifier.filterArrayWithQualifier(NSMutableArray,
EOQualfier)
|
<T> NSArray<T> |
filtered(NSArray<T> array)
Equivalent to EOQualifier.filteredArrayWithQualifier(NSArray,
EOQualifier)
|
<T> T |
first(NSArray<T> array)
Equivalent to EOQualifier.first(NSMutableArray, EOQualfier)
|
ERXNotQualifier |
not()
Returns a new qualifier that represents this qualifier not'd.
|
<T> T |
one(NSArray<T> array)
Equivalent to EOQualifier.one(NSMutableArray, EOQualfier)
|
ERXOrQualifier |
or(EOQualifier... qualifiers)
Returns a new qualifier that represents this qualifier or'd with the
given list of qualifiers.
|
<T> T |
requiredOne(NSArray<T> array)
Equivalent to EOQualifier.requiredOne(NSArray, EOQualfier)
|
ERXAndQualifier and(EOQualifier... qualifiers)
qualifiers
- the qualifiers to and with this qualifierERXOrQualifier or(EOQualifier... qualifiers)
qualifiers
- the qualifiers to or with this qualifierERXNotQualifier not()
<T> NSArray<T> filtered(NSArray<T> array)
T
- the type of the arrayarray
- the array to filtervoid filter(NSMutableArray<?> array)
array
- the array to filter (in place)<T> T first(NSArray<T> array)
T
- the type of the arrayarray
- the array to filter (in place)<T> T one(NSArray<T> array)
T
- the type of the arrayarray
- the array to filter (in place)IllegalStateException
- if more than one object matched<T> T requiredOne(NSArray<T> array)
T
- the type of the arrayarray
- the array to filter (in place)IllegalStateException
- if more than one object matchedNoSuchElementException
- if no objects matchedCopyright © 2002 – 2024 Project Wonder.