Home / Function/ equals() — netty Function Reference

equals() — netty Function Reference

Architecture documentation for the equals() function in HpackBenchmarkUtil.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  46208102_550e_c2ed_408c_f504a2ba312a["equals()"]
  7cb77a5a_46ae_769d_8314_42adaa226c86["HeadersKey"]
  46208102_550e_c2ed_408c_f504a2ba312a -->|defined in| 7cb77a5a_46ae_769d_8314_42adaa226c86
  style 46208102_550e_c2ed_408c_f504a2ba312a fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

microbench/src/main/java/io/netty/handler/codec/http2/HpackBenchmarkUtil.java lines 61–76

        @Override
        public boolean equals(Object o) {
            if (this == o) {
                return true;
            }
            if (o == null || getClass() != o.getClass()) {
                return false;
            }

            HeadersKey that = (HeadersKey) o;

            if (limitToAscii != that.limitToAscii) {
                return false;
            }
            return size == that.size;
        }

Domain

Subdomains

Frequently Asked Questions

What does equals() do?
equals() is a function in the netty codebase, defined in microbench/src/main/java/io/netty/handler/codec/http2/HpackBenchmarkUtil.java.
Where is equals() defined?
equals() is defined in microbench/src/main/java/io/netty/handler/codec/http2/HpackBenchmarkUtil.java at line 61.

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free