Uses of Class
microsoft.exchange.webservices.data.search.filter.SearchFilter
-
-
Uses of SearchFilter in microsoft.exchange.webservices.data.core
Methods in microsoft.exchange.webservices.data.core with parameters of type SearchFilter Modifier and Type Method Description FindFoldersResultsExchangeService. findFolders(WellKnownFolderName parentFolderName, SearchFilter searchFilter, FolderView view)Obtains a list of folder by searching the sub-folder of the specified folder.FindFoldersResultsExchangeService. findFolders(FolderId parentFolderId, SearchFilter searchFilter, FolderView view)Obtains a list of folder by searching the sub-folder of the specified folder.protected <TItem extends Item>
ServiceResponseCollection<FindItemResponse<TItem>>ExchangeService. findItems(Class<TItem> cls, FolderId parentFolderId, SearchFilter searchFilter, ViewBase view, Grouping groupBy)Obtains a grouped list of item by searching the contents of a specific folder.<TItem extends Item>
ServiceResponseCollection<FindItemResponse<TItem>>ExchangeService. findItems(Iterable<FolderId> parentFolderIds, SearchFilter searchFilter, String queryString, ViewBase view, Grouping groupBy, ServiceErrorHandling errorHandlingMode)Finds item.FindItemsResults<Item>ExchangeService. findItems(WellKnownFolderName parentFolderName, SearchFilter searchFilter, ItemView view)Obtains a list of item by searching the contents of a specific folder.GroupedFindItemsResults<Item>ExchangeService. findItems(WellKnownFolderName parentFolderName, SearchFilter searchFilter, ItemView view, Grouping groupBy)Obtains a grouped list of item by searching the contents of a specific folder.FindItemsResults<Item>ExchangeService. findItems(FolderId parentFolderId, SearchFilter searchFilter, ItemView view)Obtains a list of item by searching the contents of a specific folder.GroupedFindItemsResults<Item>ExchangeService. findItems(FolderId parentFolderId, SearchFilter searchFilter, ItemView view, Grouping groupBy)Obtains a grouped list of item by searching the contents of a specific folder. -
Uses of SearchFilter in microsoft.exchange.webservices.data.core.service.folder
Methods in microsoft.exchange.webservices.data.core.service.folder with parameters of type SearchFilter Modifier and Type Method Description FindFoldersResultsFolder. findFolders(SearchFilter searchFilter, FolderView view)Obtains a list of folder by searching the sub-folder of this folder.FindItemsResults<Item>Folder. findItems(SearchFilter searchFilter, ItemView view)Find item.GroupedFindItemsResults<Item>Folder. findItems(SearchFilter searchFilter, ItemView view, Grouping groupBy)Find item. -
Uses of SearchFilter in microsoft.exchange.webservices.data.property.complex
Methods in microsoft.exchange.webservices.data.property.complex that return SearchFilter Modifier and Type Method Description SearchFilterSearchFolderParameters. getSearchFilter()Gets the search filter associated with the search folder.Methods in microsoft.exchange.webservices.data.property.complex with parameters of type SearchFilter Modifier and Type Method Description voidSearchFolderParameters. setSearchFilter(SearchFilter searchFilter)Sets the search filter. -
Uses of SearchFilter in microsoft.exchange.webservices.data.search.filter
Subclasses of SearchFilter in microsoft.exchange.webservices.data.search.filter Modifier and Type Class Description static classSearchFilter.ContainsSubstringRepresents a search filter that checks for the presence of a substring inside a text property.static classSearchFilter.ExcludesBitmaskRepresents a bitmask exclusion search filter.static classSearchFilter.ExistsRepresents a search filter checking if a field is set.static classSearchFilter.IsEqualToRepresents a search filter that checks if a property is equal to a given value or other property.static classSearchFilter.IsGreaterThanRepresents a search filter that checks if a property is greater than a given value or other property.static classSearchFilter.IsGreaterThanOrEqualToRepresents a search filter that checks if a property is greater than or equal to a given value or other property.static classSearchFilter.IsLessThanRepresents a search filter that checks if a property is less than a given value or other property.static classSearchFilter.IsLessThanOrEqualToRepresents a search filter that checks if a property is less than or equal to a given value or other property.static classSearchFilter.IsNotEqualToRepresents a search filter that checks if a property is not equal to a given value or other property.static classSearchFilter.NotRepresents a search filter that negates another.static classSearchFilter.PropertyBasedFilterRepresents a search filter where an item or folder property is involved.static classSearchFilter.RelationalFilterRepresents the base class for relational filter (for example, IsEqualTo, IsGreaterThan or IsLessThanOrEqualTo).static classSearchFilter.SearchFilterCollectionRepresents a collection of search filter linked by a logical operator.Methods in microsoft.exchange.webservices.data.search.filter that return SearchFilter Modifier and Type Method Description SearchFilterSearchFilter.Not. getSearchFilter()Gets the search filter to negate.SearchFilterSearchFilter.SearchFilterCollection. getSearchFilter(int index)Gets the search filter at the specified index.static SearchFilterSearchFilter. loadFromXml(EwsServiceXmlReader reader)Loads from XML.Methods in microsoft.exchange.webservices.data.search.filter that return types with arguments of type SearchFilter Modifier and Type Method Description Iterator<SearchFilter>SearchFilter.SearchFilterCollection. iterator()Methods in microsoft.exchange.webservices.data.search.filter with parameters of type SearchFilter Modifier and Type Method Description voidSearchFilter.SearchFilterCollection. add(SearchFilter searchFilter)Adds a search filter of any type to the collection.booleanSearchFilter.SearchFilterCollection. contains(SearchFilter searchFilter)Determines whether a specific search filter is in the collection.voidSearchFilter.SearchFilterCollection. remove(SearchFilter searchFilter)Removes a search filter from the collection.voidSearchFilter.Not. setSearchFilter(SearchFilter searchFilter)Sets the search filter to negate.voidSearchFilter.SearchFilterCollection. setSearchFilter(int index, SearchFilter searchFilter)Sets the search filter at the specified index.Method parameters in microsoft.exchange.webservices.data.search.filter with type arguments of type SearchFilter Modifier and Type Method Description voidSearchFilter.SearchFilterCollection. addRange(Iterable<SearchFilter> searchFilters)Adds multiple search filter to the collection.Constructors in microsoft.exchange.webservices.data.search.filter with parameters of type SearchFilter Constructor Description Not(SearchFilter searchFilter)Initializes a new instance of the class.SearchFilterCollection(LogicalOperator logicalOperator, SearchFilter... searchFilters)Initializes a new instance of the class.Constructor parameters in microsoft.exchange.webservices.data.search.filter with type arguments of type SearchFilter Constructor Description SearchFilterCollection(LogicalOperator logicalOperator, Iterable<SearchFilter> searchFilters)Initializes a new instance of the class.
-