javax.mail.search
public final class: SentDateTerm [javadoc |
source]
java.lang.Object
javax.mail.search.SearchTerm
javax.mail.search.ComparisonTerm
javax.mail.search.DateTerm
javax.mail.search.SentDateTerm
All Implemented Interfaces:
Serializable
This class implements comparisons for the Message SentDate.
- author:
Bill
- Shannon
- author:
John
- Mani
Method from javax.mail.search.SentDateTerm Summary: |
---|
equals, match |
Methods from javax.mail.search.SearchTerm: |
---|
match |
Methods from java.lang.Object: |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Method from javax.mail.search.SentDateTerm Detail: |
public boolean equals(Object obj) {
if (!(obj instanceof SentDateTerm))
return false;
return super.equals(obj);
}
|
public boolean match(Message msg) {
Date d;
try {
d = msg.getSentDate();
} catch (Exception e) {
return false;
}
if (d == null)
return false;
return super.match(d);
}
|