- java.lang.Object
- 
- jakarta.mail.search.SearchTerm
- 
- jakarta.mail.search.StringTerm
- 
- jakarta.mail.search.HeaderTerm
 
 
 
- 
- All Implemented Interfaces:
- java.io.Serializable
 
 public final class HeaderTerm extends StringTerm This class implements comparisons for Message headers. The comparison is case-insensitive.- Author:
- Bill Shannon, John Mani
- See Also:
- Serialized Form
 
- 
- 
Field Summary- 
Fields inherited from class jakarta.mail.search.StringTermignoreCase, pattern
 
- 
 - 
Constructor SummaryConstructors Constructor Description HeaderTerm(java.lang.String headerName, java.lang.String pattern)Constructor.
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object obj)Equality comparison.java.lang.StringgetHeaderName()Return the name of the header to compare with.inthashCode()Compute a hashCode for this object.booleanmatch(Message msg)The header match method.- 
Methods inherited from class jakarta.mail.search.StringTermgetIgnoreCase, getPattern, match
 
- 
 
- 
- 
- 
Method Detail- 
getHeaderNamepublic java.lang.String getHeaderName() Return the name of the header to compare with.- Returns:
- the name of the header
 
 - 
matchpublic boolean match(Message msg) The header match method.- Specified by:
- matchin class- SearchTerm
- Parameters:
- msg- The match is applied to this Message's header
- Returns:
- true if the match succeeds, otherwise false
 
 - 
equalspublic boolean equals(java.lang.Object obj) Equality comparison.- Overrides:
- equalsin class- StringTerm
 
 - 
hashCodepublic int hashCode() Compute a hashCode for this object.- Overrides:
- hashCodein class- StringTerm
 
 
- 
 
-