1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20 package javax.mail.search;
21
22 import javax.mail.Address;
23 import javax.mail.Message;
24 import javax.mail.MessagingException;
25
26
27
28
29 public final class RecipientTerm extends AddressTerm {
30 protected Message.RecipientType type;
31
32 public RecipientTerm(Message.RecipientType type, Address address) {
33 super(address);
34 this.type = type;
35 }
36
37 public Message.RecipientType getRecipientType() {
38 return type;
39 }
40
41 public boolean match(Message message) {
42 try {
43 Address from[] = message.getRecipients(type);
44 if (from == null) {
45 return false;
46 }
47 for (int i = 0; i < from.length; i++) {
48 Address address = from[i];
49 if (match(address)) {
50 return true;
51 }
52 }
53 return false;
54 } catch (MessagingException e) {
55 return false;
56 }
57 }
58
59 public boolean equals(Object other) {
60 if (this == other) return true;
61 if (other instanceof RecipientTerm == false) return false;
62
63 final RecipientTerm recipientTerm = (RecipientTerm) other;
64 return address.equals(recipientTerm.address) && type == recipientTerm.type;
65 }
66
67 public int hashCode() {
68 return address.hashCode() + type.hashCode();
69 }
70 }