Package jakarta.mail.search
Class SearchTerm
java.lang.Object
jakarta.mail.search.SearchTerm
- All Implemented Interfaces:
 Serializable
- Direct Known Subclasses:
 AddressTerm,AndTerm,ComparisonTerm,FlagTerm,NotTerm,OrTerm,StringTerm
Search criteria are expressed as a tree of search-terms, forming
 a parse-tree for the search expression. 
Search-terms are represented by this class. This is an abstract class; subclasses implement specific match methods.
Search terms are serializable, which allows storing a search term between sessions. Warning: Serialized objects of this class may not be compatible with future Jakarta Mail API releases. The current serialization support is appropriate for short term storage.
- Author:
 - Bill Shannon, John Mani
 - See Also:
 
- 
Constructor Summary
Constructors - 
Method Summary
 
- 
Constructor Details
- 
SearchTerm
public SearchTerm()Creates a defaultSearchTerm. 
 - 
 - 
Method Details
- 
match
This method applies a specific match criterion to the given message and returns the result.- Parameters:
 msg- The match criterion is applied on this message- Returns:
 - true, it the match succeeds, false if the match fails
 
 
 -