Package jakarta.mail.search
Class RecipientTerm
- java.lang.Object
 - 
- jakarta.mail.search.SearchTerm
 - 
- jakarta.mail.search.AddressTerm
 - 
- jakarta.mail.search.RecipientTerm
 
 
 
 
- 
- All Implemented Interfaces:
 Serializable
public final class RecipientTerm extends AddressTerm
This class implements comparisons for the Recipient Address headers.- Author:
 - Bill Shannon, John Mani
 - See Also:
 - Serialized Form
 
 
- 
- 
Field Summary
- 
Fields inherited from class jakarta.mail.search.AddressTerm
address 
 - 
 
- 
Constructor Summary
Constructors Constructor Description RecipientTerm(Message.RecipientType type, Address address)Constructor. 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object obj)Equality comparison.Message.RecipientTypegetRecipientType()Return the type of recipient to match with.inthashCode()Compute a hashCode for this object.booleanmatch(Message msg)The match method.- 
Methods inherited from class jakarta.mail.search.AddressTerm
getAddress, match 
 - 
 
 - 
 
- 
- 
Constructor Detail
- 
RecipientTerm
public RecipientTerm(Message.RecipientType type, Address address)
Constructor.- Parameters:
 type- the recipient typeaddress- the address to match for
 
 - 
 
- 
Method Detail
- 
getRecipientType
public Message.RecipientType getRecipientType()
Return the type of recipient to match with.- Returns:
 - the recipient type
 
 
- 
match
public boolean match(Message msg)
The match method.- Specified by:
 matchin classSearchTerm- Parameters:
 msg- The address match is applied to this Message's recepient address- Returns:
 - true if the match succeeds, otherwise false
 
 
- 
equals
public boolean equals(Object obj)
Equality comparison.- Overrides:
 equalsin classAddressTerm
 
- 
hashCode
public int hashCode()
Compute a hashCode for this object.- Overrides:
 hashCodein classAddressTerm
 
 - 
 
 -