Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for EqualsHashCode (0.08 sec)

  1. android/guava-testlib/test/com/google/common/testing/anotherpackage/ForwardingWrapperTesterTest.java

            new Function<Runnable, Runnable>() {
              @Override
              public Runnable apply(Runnable runnable) {
                return new ForwardingRunnable(runnable) {
    
                  @SuppressWarnings("EqualsHashCode")
                  @Override
                  public boolean equals(@Nullable Object o) {
                    if (o instanceof ForwardingRunnable) {
                      ForwardingRunnable that = (ForwardingRunnable) o;
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Jul 14 14:44:08 UTC 2025
    - 15.7K bytes
    - Viewed (0)
  2. guava-testlib/test/com/google/common/testing/anotherpackage/ForwardingWrapperTesterTest.java

            new Function<Runnable, Runnable>() {
              @Override
              public Runnable apply(Runnable runnable) {
                return new ForwardingRunnable(runnable) {
    
                  @SuppressWarnings("EqualsHashCode")
                  @Override
                  public boolean equals(@Nullable Object o) {
                    if (o instanceof ForwardingRunnable) {
                      ForwardingRunnable that = (ForwardingRunnable) o;
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Jul 14 14:44:08 UTC 2025
    - 15.7K bytes
    - Viewed (0)
  3. guava-testlib/test/com/google/common/testing/NullPointerTesterTest.java

      }
    
      private static String rootLocaleFormat(String format, Object... args) {
        return String.format(Locale.ROOT, format, args);
      }
    
      static class OverridesEquals {
        @SuppressWarnings("EqualsHashCode")
        @Override
        public boolean equals(@Nullable Object o) {
          return true;
        }
      }
    
      static class DoesNotOverrideEquals {
        public boolean equals(Object a, Object b) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Jul 14 14:44:08 UTC 2025
    - 47.7K bytes
    - Viewed (0)
  4. 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