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
另请参见:
序列化表格

字段摘要
 
从类 javax.mail.search.StringTerm 继承的字段
ignoreCase, pattern
 
构造方法摘要
FromStringTerm(String pattern)
          Constructor.
 
方法摘要
 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.
 
从类 javax.mail.search.AddressStringTerm 继承的方法
match
 
从类 javax.mail.search.StringTerm 继承的方法
getIgnoreCase, getPattern, hashCode, match
 
从类 java.lang.Object 继承的方法
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
 

构造方法详细信息

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.