API Reference
| Classic JavaDoc |
ItemsCollection.restrict
public ItemsCollection restrict(Restriction restriction)
Creates a new collection restricted to items that matches the specified restriction criteria.
To create the restriction criteria, use the class If. This class allows criteria to be specified on item's fields and creates the Restriction object.
Example code matching items with a Subject that starts with "Test":
ItemsCollection items = ...;
items = items.restrict(If.Item.Subject.startsWith("Test"));
the restricted collection.
See Also:Throws:ExchangeServiceException | if any errors occur during the communication with Exchange. |
Community comments
Powered by JavaDocPlus