Package jakarta.mail.search
Class ReceivedDateTerm
- java.lang.Object
-
- jakarta.mail.search.SearchTerm
-
- jakarta.mail.search.ComparisonTerm
-
- jakarta.mail.search.DateTerm
-
- jakarta.mail.search.ReceivedDateTerm
-
- All Implemented Interfaces:
Serializable
public final class ReceivedDateTerm extends DateTerm
This class implements comparisons for the Message Received date- Author:
- Bill Shannon, John Mani
- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class jakarta.mail.search.ComparisonTerm
comparison, EQ, GE, GT, LE, LT, NE
-
-
Constructor Summary
Constructors Constructor Description ReceivedDateTerm(int comparison, Date date)
Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object obj)
Equality comparison.boolean
match(Message msg)
The match method.-
Methods inherited from class jakarta.mail.search.DateTerm
getComparison, getDate, hashCode, match
-
-
-
-
Constructor Detail
-
ReceivedDateTerm
public ReceivedDateTerm(int comparison, Date date)
Constructor.- Parameters:
comparison
- the Comparison typedate
- the date to be compared
-
-
Method Detail
-
match
public boolean match(Message msg)
The match method.- Specified by:
match
in classSearchTerm
- Parameters:
msg
- the date comparator is applied to this Message's received date- Returns:
- true if the comparison succeeds, otherwise false
-
-