Пример #1
0
 public int hashCode() {
   if (mAtomicParts == null) {
     return mData.hashCode();
   } else {
     return mData.hashCode() + mAtomicParts.hashCode();
   }
 }
 /** Returns a hash code value for this object. */
 @Override
 public int hashCode() {
   return Float.floatToIntBits(getBoost())
       ^ slop
       ^ termArraysHashCode()
       ^ positions.hashCode()
       ^ 0x4AC65113;
 }
Пример #3
0
 @Override
 public int hashCode() {
   int result = objects.hashCode();
   result = 31 * result + indexes.hashCode();
   return result;
 }
Пример #4
0
 public int hashCode() {
   return list.hashCode();
 }
Пример #5
0
 public int hashCode() {
   return myList.hashCode();
 }
Пример #6
0
 @Override
 public int hashCode() {
   return original.hashCode();
 }