Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for StringCharsetFunnel (0.28 sec)

  1. android/guava/src/com/google/common/hash/Funnels.java

        @Override
        public boolean equals(@Nullable Object o) {
          if (o instanceof StringCharsetFunnel) {
            StringCharsetFunnel funnel = (StringCharsetFunnel) o;
            return this.charset.equals(funnel.charset);
          }
          return false;
        }
    
        @Override
        public int hashCode() {
          return StringCharsetFunnel.class.hashCode() ^ charset.hashCode();
        }
    
        Object writeReplace() {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Jul 17 15:26:41 UTC 2025
    - 7.2K bytes
    - Viewed (0)
  2. guava/src/com/google/common/hash/Funnels.java

        @Override
        public boolean equals(@Nullable Object o) {
          if (o instanceof StringCharsetFunnel) {
            StringCharsetFunnel funnel = (StringCharsetFunnel) o;
            return this.charset.equals(funnel.charset);
          }
          return false;
        }
    
        @Override
        public int hashCode() {
          return StringCharsetFunnel.class.hashCode() ^ charset.hashCode();
        }
    
        Object writeReplace() {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Jul 17 15:26:41 UTC 2025
    - 7.2K bytes
    - Viewed (0)
Back to top