names() — netty Function Reference
Architecture documentation for the names() function in ReadOnlyHttpHeaders.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 94e0532c_0097_d9f7_113c_aa21abf5d275["names()"] 2bbea49a_9f02_fdb8_1113_8beb98d6647a["ReadOnlyHttpHeaders"] 94e0532c_0097_d9f7_113c_aa21abf5d275 -->|defined in| 2bbea49a_9f02_fdb8_1113_8beb98d6647a e41567f5_1f82_6e36_d2db_c187666d198a["isEmpty()"] 94e0532c_0097_d9f7_113c_aa21abf5d275 -->|calls| e41567f5_1f82_6e36_d2db_c187666d198a aa741bd4_20d0_0e55_204f_543461c6ad5b["size()"] 94e0532c_0097_d9f7_113c_aa21abf5d275 -->|calls| aa741bd4_20d0_0e55_204f_543461c6ad5b style 94e0532c_0097_d9f7_113c_aa21abf5d275 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
codec-http/src/main/java/io/netty/handler/codec/http/ReadOnlyHttpHeaders.java lines 218–228
@Override
public Set<String> names() {
if (isEmpty()) {
return Collections.emptySet();
}
Set<String> names = new LinkedHashSet<String>(size());
for (int i = 0; i < nameValuePairs.length; i += 2) {
names.add(nameValuePairs[i].toString());
}
return names;
}
Domain
Subdomains
Source
Frequently Asked Questions
What does names() do?
names() is a function in the netty codebase, defined in codec-http/src/main/java/io/netty/handler/codec/http/ReadOnlyHttpHeaders.java.
Where is names() defined?
names() is defined in codec-http/src/main/java/io/netty/handler/codec/http/ReadOnlyHttpHeaders.java at line 218.
What does names() call?
names() calls 2 function(s): isEmpty, size.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free