Searched refs:hashCode (Results 1 - 25 of 32) sorted by relevance

12

/javamail/gimap/src/main/java/com/sun/mail/gimap/
H A DLongTerm.java90 * Compute a hashCode for this object.
92 public int hashCode() { method in class:LongTerm
93 return (int)number + super.hashCode();
/javamail/mail/src/main/java/javax/mail/search/
H A DDateTerm.java125 * Compute a hashCode for this object.
127 public int hashCode() { method in class:DateTerm
128 return date.hashCode() + super.hashCode();
H A DHeaderTerm.java119 * Compute a hashCode for this object.
121 public int hashCode() { method in class:HeaderTerm
123 return headerName.toLowerCase(Locale.ENGLISH).hashCode() +
124 super.hashCode();
H A DRecipientStringTerm.java125 * Compute a hashCode for this object.
127 public int hashCode() { method in class:RecipientStringTerm
128 return type.hashCode() + super.hashCode();
H A DRecipientTerm.java119 * Compute a hashCode for this object.
121 public int hashCode() { method in class:RecipientTerm
122 return type.hashCode() + super.hashCode();
H A DStringTerm.java134 * Compute a hashCode for this object.
136 public int hashCode() { method in class:StringTerm
137 return ignoreCase ? pattern.hashCode() : ~pattern.hashCode();
H A DAddressTerm.java96 * Compute a hashCode for this object.
98 public int hashCode() { method in class:AddressTerm
99 return address.hashCode();
H A DNotTerm.java90 * Compute a hashCode for this object.
92 public int hashCode() { method in class:NotTerm
93 return term.hashCode() << 1;
H A DComparisonTerm.java78 * Compute a hashCode for this object.
80 public int hashCode() { method in class:ComparisonTerm
H A DIntegerComparisonTerm.java112 * Compute a hashCode for this object.
114 public int hashCode() { method in class:IntegerComparisonTerm
115 return number + super.hashCode();
H A DFlagTerm.java160 * Compute a hashCode for this object.
162 public int hashCode() { method in class:FlagTerm
163 return set ? flags.hashCode() : ~flags.hashCode();
H A DAndTerm.java129 * Compute a hashCode for this object.
131 public int hashCode() { method in class:AndTerm
134 hash += terms[i].hashCode();
H A DOrTerm.java129 * Compute a hashCode for this object.
131 public int hashCode() { method in class:OrTerm
134 hash += terms[i].hashCode();
/javamail/mbox/src/main/java/com/sun/mail/mbox/
H A DUNIXInbox.java140 public int hashCode() { method in class:UNIXInbox
141 return super.hashCode() + user.hashCode();
/javamail/mail/src/main/java/com/sun/mail/imap/
H A DModifiedSinceTerm.java110 * Compute a hashCode for this object.
112 public int hashCode() { method in class:ModifiedSinceTerm
H A DOlderTerm.java112 * Compute a hashCode for this object.
114 public int hashCode() { method in class:OlderTerm
H A DYoungerTerm.java112 * Compute a hashCode for this object.
114 public int hashCode() { method in class:YoungerTerm
H A DRights.java293 public int hashCode() { method in class:Rights
455 System.out.println("f1 hash code " + f1.hashCode());
456 System.out.println("f3 hash code " + f3.hashCode());
457 if (f1.hashCode() == f3.hashCode())
/javamail/mail/src/main/java/javax/mail/
H A DURLName.java94 * The host's IP address, used in equals and hashCode.
118 private int hashCode = 0; field in class:URLName
488 public int hashCode() { method in class:URLName
489 if (hashCode != 0)
490 return hashCode;
492 hashCode += protocol.hashCode();
495 hashCode += addr.hashCode();
497 hashCode
[all...]
H A DFlags.java389 public int hashCode() { method in class:Flags
394 hash += e.nextElement().hashCode();
586 System.out.println("f1 hash code " + f1.hashCode());
587 System.out.println("f3 hash code " + f3.hashCode());
588 if (f1.hashCode() == f3.hashCode())
/javamail/mail/src/main/java/javax/mail/internet/
H A DUniqueValue.java69 * part number, a newly created object's <code>hashCode()</code>,
74 long hash = s.hashCode();
87 * created object's <code>hashCode()</code>, a global ID
113 s.append(s.hashCode()).append('.').
H A DNewsAddress.java160 public int hashCode() { method in class:NewsAddress
163 hash += newsgroup.hashCode();
165 hash += host.toLowerCase(Locale.ENGLISH).hashCode();
/javamail/mail/src/main/java/com/sun/mail/util/logging/
H A DSeverityComparator.java281 public int hashCode() { method in class:SeverityComparator
282 return 31 * getClass().hashCode();
/javamail/mail/src/test/java/com/sun/mail/util/logging/
H A DDurationFilterTest.java542 assertTrue(one.hashCode() == two.hashCode());
543 assertFalse(one.hashCode() == three.hashCode());
547 assertTrue(one.hashCode() == two.hashCode());
548 assertFalse(one.hashCode() == three.hashCode());
/javamail/demo/src/main/java/internal/
H A Danswer.java342 public int hashCode() { method in class:Question
343 return subject.hashCode();

Completed in 68 milliseconds

12