javax.mail.search
类 FromStringTerm
java.lang.Object
javax.mail.search.SearchTerm
javax.mail.search.StringTerm
javax.mail.search.AddressStringTerm
javax.mail.search.FromStringTerm
- 所有已实现的接口:
- Serializable
public final class FromStringTerm
- extends AddressStringTerm
This class implements string comparisons for the From Address
header.
Note that this class differs from the FromTerm class
in that this class does comparisons on address strings rather than Address
objects. The string comparisons are case-insensitive.
- 从以下版本开始:
- JavaMail 1.1
- 另请参见:
- 序列化表格
|
方法摘要 |
boolean |
equals(Object obj)
Equality comparison. |
boolean |
match(Message msg)
Check whether the address string specified in the constructor is
a substring of the From address of this Message. |
FromStringTerm
public FromStringTerm(String pattern)
- Constructor.
- 参数:
pattern - the address pattern to be compared.
match
public boolean match(Message msg)
- Check whether the address string specified in the constructor is
a substring of the From address of this Message.
- 指定者:
- 类
SearchTerm 中的 match
- 参数:
msg - The comparison is applied to this Message's From
address.
- 返回:
- true if the match succeeds, otherwise false.
equals
public boolean equals(Object obj)
- Equality comparison.
- 覆盖:
- 类
AddressStringTerm 中的 equals
Copyright © 2013. All Rights Reserved.