Searched defs:hashCode (Results 76 - 100 of 847) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/java/net/
H A DInterfaceAddress.java99 * @see java.net.InterfaceAddress#hashCode()
120 public int hashCode() { method in class:InterfaceAddress
121 return address.hashCode() + ((broadcast != null) ? broadcast.hashCode() : 0) + maskLength;
H A DProxy.java166 public final int hashCode() { method in class:Proxy
168 return type().hashCode();
169 return type().hashCode() + address().hashCode();
/openjdk7/jdk/src/share/classes/java/rmi/activation/
H A DActivationGroupID.java89 public int hashCode() { method in class:ActivationGroupID
90 return uid.hashCode();
H A DActivationID.java135 public int hashCode() { method in class:ActivationID
136 return uid.hashCode();
/openjdk7/jdk/src/share/classes/java/rmi/dgc/
H A DVMID.java91 public int hashCode() { method in class:VMID
92 return uid.hashCode();
/openjdk7/jdk/src/share/classes/java/security/
H A DCodeSigner.java106 public int hashCode() { method in class:CodeSigner
109 myhash = signerCertPath.hashCode();
111 myhash = signerCertPath.hashCode() + timestamp.hashCode();
H A DPermission.java140 * The required <code>hashCode</code> behavior for Permission Objects is
145 * <code>hashCode</code> method
151 * method, then calling the <code>hashCode</code> method on each of the
158 public abstract int hashCode(); method in class:Permission
H A DTimestamp.java108 public int hashCode() { method in class:Timestamp
110 myhash = timestamp.hashCode() + signerCertPath.hashCode();
/openjdk7/jdk/src/share/classes/java/security/cert/
H A DX509CRLEntry.java106 public int hashCode() { method in class:X509CRLEntry
/openjdk7/jdk/src/share/classes/java/security/spec/
H A DECFieldF2m.java234 public int hashCode() { method in class:ECFieldF2m
236 value += (rp==null? 0:rp.hashCode());
H A DECPoint.java110 public int hashCode() { method in class:ECPoint
112 return x.hashCode() << 5 + y.hashCode();
/openjdk7/jdk/src/share/classes/java/text/
H A DParsePosition.java126 public int hashCode() { method in class:ParsePosition
/openjdk7/jdk/src/share/classes/javax/crypto/spec/
H A DRC2ParameterSpec.java151 public int hashCode() { method in class:RC2ParameterSpec
H A DRC5ParameterSpec.java193 public int hashCode() { method in class:RC5ParameterSpec
H A DSecretKeySpec.java191 public int hashCode() { method in class:SecretKeySpec
197 return (retval ^= "desede".hashCode());
199 return (retval ^= this.algorithm.toLowerCase().hashCode());
/openjdk7/jdk/src/share/classes/javax/management/
H A DAttribute.java123 public int hashCode() { method in class:Attribute
124 return name.hashCode() ^ (value == null ? 0 : value.hashCode());
H A DMBeanParameterInfo.java145 public int hashCode() { method in class:MBeanParameterInfo
146 return getName().hashCode() ^ getType().hashCode();
H A DObjectInstance.java123 public int hashCode() { method in class:ObjectInstance
124 final int classHash = ((className==null)?0:className.hashCode());
125 return name.hashCode() ^ classHash;
/openjdk7/jdk/src/share/classes/javax/management/openmbean/
H A DOpenMBeanAttributeInfo.java112 * This ensures that <code> t1.equals(t2) </code> implies that <code> t1.hashCode()==t2.hashCode() </code>
115 * {@link Object#hashCode() Object.hashCode()}.
120 public int hashCode(); method in interface:OpenMBeanAttributeInfo
H A DOpenMBeanConstructorInfo.java114 * (ie: its name and signature, where the signature hashCode is calculated by a call to
115 * <tt>java.util.Arrays.asList(this.getSignature).hashCode()</tt>).
117 * This ensures that <code> t1.equals(t2) </code> implies that <code> t1.hashCode()==t2.hashCode() </code>
120 * {@link Object#hashCode() Object.hashCode()}.
125 public int hashCode(); method in interface:OpenMBeanConstructorInfo
H A DOpenMBeanInfo.java164 * where the hashCode of each of these arrays is calculated by a call to
165 * <tt>new java.util.HashSet(java.util.Arrays.asList(this.getSignature)).hashCode()</tt>).
167 * This ensures that <code> t1.equals(t2) </code> implies that <code> t1.hashCode()==t2.hashCode() </code>
170 * {@link Object#hashCode() Object.hashCode()}.
175 public int hashCode(); method in interface:OpenMBeanInfo
H A DOpenMBeanOperationInfo.java157 * (ie: its name, return open type, impact and signature, where the signature hashCode is calculated by a call to
158 * <tt>java.util.Arrays.asList(this.getSignature).hashCode()</tt>).
160 * This ensures that <code> t1.equals(t2) </code> implies that <code> t1.hashCode()==t2.hashCode() </code>
163 * {@link Object#hashCode() Object.hashCode()}.
168 public int hashCode(); method in interface:OpenMBeanOperationInfo
/openjdk7/jdk/src/share/classes/javax/management/remote/
H A DJMXPrincipal.java130 public int hashCode() { method in class:JMXPrincipal
131 return name.hashCode();
/openjdk7/jdk/src/share/classes/javax/naming/
H A DBinaryRefAddr.java150 public int hashCode() { method in class:BinaryRefAddr
151 int hash = addrType.hashCode();
H A DRefAddr.java126 * @see java.lang.Object#hashCode
128 public int hashCode() { method in class:RefAddr
130 ? addrType.hashCode()
131 : addrType.hashCode() + getContent().hashCode();

Completed in 93 milliseconds

1234567891011>>