Home / Function/ getValueNames() — netty Function Reference

getValueNames() — netty Function Reference

Architecture documentation for the getValueNames() function in QuicheQuicSslEngine.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  fe2bf4d3_df0c_f7dc_537e_504dbc03462d["getValueNames()"]
  453b39a5_2559_f486_48cb_8821ee8fee5a["QuicheQuicSslSession"]
  fe2bf4d3_df0c_f7dc_537e_504dbc03462d -->|defined in| 453b39a5_2559_f486_48cb_8821ee8fee5a
  baaecb55_9a6a_00eb_53de_8db4f152a595["isEmpty()"]
  fe2bf4d3_df0c_f7dc_537e_504dbc03462d -->|calls| baaecb55_9a6a_00eb_53de_8db4f152a595
  style fe2bf4d3_df0c_f7dc_537e_504dbc03462d fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

codec-classes-quic/src/main/java/io/netty/handler/codec/quic/QuicheQuicSslEngine.java lines 477–486

        @Override
        public String[] getValueNames() {
            synchronized (this) {
                Map<String, Object> values = this.values;
                if (values == null || values.isEmpty()) {
                    return EmptyArrays.EMPTY_STRINGS;
                }
                return values.keySet().toArray(new String[0]);
            }
        }

Domain

Subdomains

Calls

Frequently Asked Questions

What does getValueNames() do?
getValueNames() is a function in the netty codebase, defined in codec-classes-quic/src/main/java/io/netty/handler/codec/quic/QuicheQuicSslEngine.java.
Where is getValueNames() defined?
getValueNames() is defined in codec-classes-quic/src/main/java/io/netty/handler/codec/quic/QuicheQuicSslEngine.java at line 477.
What does getValueNames() call?
getValueNames() calls 1 function(s): isEmpty.

Analyze Your Own Codebase

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

Try Supermodel Free