- java.lang.Object
- 
- jakarta.mail.search.SearchTerm
- 
- jakarta.mail.search.StringTerm
- 
- jakarta.mail.search.MessageIDTerm
 
 
 
- 
- All Implemented Interfaces:
- java.io.Serializable
 
 public final class MessageIDTerm extends StringTerm This term models the RFC822 "MessageId" - a message-id for Internet messages that is supposed to be unique per message. Clients can use this term to search a folder for a message given its MessageId.The MessageId is represented as a String. - Author:
- Bill Shannon, John Mani
- See Also:
- Serialized Form
 
- 
- 
Field Summary- 
Fields inherited from class jakarta.mail.search.StringTermignoreCase, pattern
 
- 
 - 
Constructor SummaryConstructors Constructor Description MessageIDTerm(java.lang.String msgid)Constructor.
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object obj)Equality comparison.booleanmatch(Message msg)The match method.- 
Methods inherited from class jakarta.mail.search.StringTermgetIgnoreCase, getPattern, hashCode, match
 
- 
 
- 
- 
- 
Method Detail- 
matchpublic boolean match(Message msg) The match method.- Specified by:
- matchin class- SearchTerm
- Parameters:
- msg- the match is applied to this Message's Message-ID header
- Returns:
- true if the match succeeds, otherwise false
 
 - 
equalspublic boolean equals(java.lang.Object obj) Equality comparison.- Overrides:
- equalsin class- StringTerm
 
 
- 
 
-