Searched refs:equals (Results 1 - 25 of 120) sorted by relevance

12345

/javamail/mail/src/main/java/javax/mail/search/
H A DDateTerm.java98 return d.before(date) || d.equals(date);
102 return d.equals(date);
104 return !d.equals(date);
108 return d.after(date) || d.equals(date);
117 public boolean equals(Object obj) { method in class:DateTerm
121 return dt.date.equals(this.date) && super.equals(obj);
H A DMessageNumberTerm.java85 public boolean equals(Object obj) { method in class:MessageNumberTerm
88 return super.equals(obj);
H A DAddressTerm.java82 return (a.equals(address));
88 public boolean equals(Object obj) { method in class:AddressTerm
92 return at.address.equals(this.address);
H A DMessageIDTerm.java98 public boolean equals(Object obj) { method in class:MessageIDTerm
101 return super.equals(obj);
H A DReceivedDateTerm.java91 public boolean equals(Object obj) { method in class:ReceivedDateTerm
94 return super.equals(obj);
H A DSentDateTerm.java91 public boolean equals(Object obj) { method in class:SentDateTerm
94 return super.equals(obj);
H A DSizeTerm.java89 public boolean equals(Object obj) { method in class:SizeTerm
92 return super.equals(obj);
H A DSubjectTerm.java92 public boolean equals(Object obj) { method in class:SubjectTerm
95 return super.equals(obj);
H A DRecipientStringTerm.java117 public boolean equals(Object obj) { method in class:RecipientStringTerm
121 return rst.type.equals(this.type) && super.equals(obj);
H A DRecipientTerm.java111 public boolean equals(Object obj) { method in class:RecipientTerm
115 return rt.type.equals(this.type) && super.equals(obj);
H A DAddressStringTerm.java98 public boolean equals(Object obj) { method in class:AddressStringTerm
101 return super.equals(obj);
H A DFromStringTerm.java99 public boolean equals(Object obj) { method in class:FromStringTerm
102 return super.equals(obj);
H A DFromTerm.java91 public boolean equals(Object obj) { method in class:FromTerm
94 return super.equals(obj);
H A DNotTerm.java82 public boolean equals(Object obj) { method in class:NotTerm
86 return nt.term.equals(this.term);
H A DComparisonTerm.java70 public boolean equals(Object obj) { method in class:ComparisonTerm
/javamail/gimap/src/main/java/com/sun/mail/gimap/
H A DGmailRawSearchTerm.java81 public boolean equals(Object obj) { method in class:GmailRawSearchTerm
84 return super.equals(obj);
H A DGmailMsgIdTerm.java93 public boolean equals(Object obj) { method in class:GmailMsgIdTerm
96 return super.equals(obj);
H A DGmailThrIdTerm.java93 public boolean equals(Object obj) { method in class:GmailThrIdTerm
96 return super.equals(obj);
H A DLongTerm.java82 public boolean equals(Object obj) { method in class:LongTerm
86 return t.number == this.number && super.equals(obj);
/javamail/mail/src/test/java/com/sun/mail/pop3/
H A DPOP3Handler.java140 if (commandName.equals("STAT")) {
142 } else if (commandName.equals("LIST")) {
144 } else if (commandName.equals("RETR")) {
146 } else if (commandName.equals("DELE")) {
148 } else if (commandName.equals("NOOP")) {
150 } else if (commandName.equals("RSET")) {
152 } else if (commandName.equals("QUIT")) {
154 } else if (commandName.equals("TOP")) {
156 } else if (commandName.equals("UIDL")) {
158 } else if (commandName.equals("USE
[all...]
/javamail/mail/src/test/java/com/sun/mail/smtp/
H A DSMTPHandler.java109 if (commandName.equals("HELO")) {
111 } else if (commandName.equals("EHLO")) {
113 } else if (commandName.equals("MAIL")) {
115 } else if (commandName.equals("RCPT")) {
117 } else if (commandName.equals("DATA")) {
119 } else if (commandName.equals("NOOP")) {
121 } else if (commandName.equals("RSET")) {
123 } else if (commandName.equals("QUIT")) {
125 } else if (commandName.equals("AUTH")) {
202 if (line.equals("
[all...]
/javamail/mail/src/main/java/javax/mail/
H A DAddress.java82 * <code>equals</code> and <code>hashCode</code> - objects that
87 public abstract boolean equals(Object address); method in class:Address
/javamail/mbox/src/main/java/com/sun/mail/mbox/
H A DUNIXInbox.java92 if (mode.equals("r"))
111 tryLock(0L, Long.MAX_VALUE, !mode.equals("rw")) != null;
133 public boolean equals(Object o) { method in class:UNIXInbox
137 return user.equals(other.user) && super.equals(other);
/javamail/mail/src/test/java/com/sun/mail/imap/
H A DIMAPHandler.java219 if (commandName.equals("LOGIN")) {
221 } else if (commandName.equals("AUTHENTICATE")) {
227 } else if (commandName.equals("CAPABILITY")) {
229 } else if (commandName.equals("NOOP")) {
231 } else if (commandName.equals("SELECT")) {
233 } else if (commandName.equals("EXAMINE")) {
235 } else if (commandName.equals("LIST")) {
237 } else if (commandName.equals("IDLE")) {
239 } else if (commandName.equals("FETCH")) {
241 } else if (commandName.equals("STOR
[all...]
/javamail/demo/src/main/java/
H A Dfolderlist.java60 if (argv[optind].equals("-T")) {
62 } else if (argv[optind].equals("-H")) {
64 } else if (argv[optind].equals("-U")) {
66 } else if (argv[optind].equals("-P")) {
68 } else if (argv[optind].equals("-L")) {
70 } else if (argv[optind].equals("-R")) {
72 } else if (argv[optind].equals("-r")) {
74 } else if (argv[optind].equals("-v")) {
76 } else if (argv[optind].equals("-D")) {
78 } else if (argv[optind].equals("
[all...]

Completed in 106 milliseconds

12345