| java.lang.Object | ||
| ↳ | com.google.code.javax.mail.search.SearchTerm | |
| ↳ | com.google.code.javax.mail.search.AndTerm | |
This class implements the logical AND operator on individual SearchTerms.
| Constants | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| long | serialVersionUID | ||||||||||
|
[Expand]
Inherited Constants | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
From class
com.google.code.javax.mail.search.SearchTerm
| |||||||||||
| Fields | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| terms | The array of terms on which the AND operator should be applied. | ||||||||||
| Public Constructors | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
Constructor that takes two terms.
| |||||||||||
Constructor that takes an array of SearchTerms.
| |||||||||||
| Public Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
Equality comparison.
| |||||||||||
Return the search terms.
| |||||||||||
Compute a hashCode for this object.
| |||||||||||
The AND operation.
| |||||||||||
|
[Expand]
Inherited Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
From class
com.google.code.javax.mail.search.SearchTerm
| |||||||||||
From class
java.lang.Object
| |||||||||||
Constructor that takes two terms.
| t1 | First term |
|---|---|
| t2 | Second term |
Constructor that takes an array of SearchTerms.
| t | Array of terms |
|---|
Equality comparison.
| obj |
|---|
Compute a hashCode for this object.
The AND operation.
The terms specified in the constructor are applied to the given object and the AND operator is applied to their results.
| msg | The specified SearchTerms are applied to this Message and the AND operator is applied to their results. |
|---|