Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for EqualsHashCode (0.09 sec)

  1. android/guava/src/com/google/common/collect/Sets.java

         *
         * @since 20.0 (present with return type {@link Iterator} since 2.0)
         */
        @Override
        public abstract UnmodifiableIterator<E> iterator();
    
        @Override
        @SuppressWarnings("EqualsHashCode") // same semantics
        public boolean equals(@Nullable Object object) {
          if (object == this) {
            return true;
          }
          if (!(object instanceof Set)) {
            return false;
          }
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 81.6K bytes
    - Viewed (0)
Back to top