arrayContains() — netty Function Reference
Architecture documentation for the arrayContains() function in SslUtils.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 65bda087_3730_e853_e17c_3338580d6ae8["arrayContains()"] 8b8e2625_56a3_eef0_1cb3_fa21bb9b476e["SslUtils"] 65bda087_3730_e853_e17c_3338580d6ae8 -->|defined in| 8b8e2625_56a3_eef0_1cb3_fa21bb9b476e 08392587_55a3_d947_9cd0_736ad18c9d48["isTLSv13SupportedByJDK0()"] 08392587_55a3_d947_9cd0_736ad18c9d48 -->|calls| 65bda087_3730_e853_e17c_3338580d6ae8 fea54e04_a7d1_b3c2_b4ac_232f88b38302["isTLSv13EnabledByJDK0()"] fea54e04_a7d1_b3c2_b4ac_232f88b38302 -->|calls| 65bda087_3730_e853_e17c_3338580d6ae8 style 65bda087_3730_e853_e17c_3338580d6ae8 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
handler/src/main/java/io/netty/handler/ssl/SslUtils.java lines 295–302
static boolean arrayContains(String[] array, String value) {
for (String v: array) {
if (value.equals(v)) {
return true;
}
}
return false;
}
Domain
Subdomains
Source
Frequently Asked Questions
What does arrayContains() do?
arrayContains() is a function in the netty codebase, defined in handler/src/main/java/io/netty/handler/ssl/SslUtils.java.
Where is arrayContains() defined?
arrayContains() is defined in handler/src/main/java/io/netty/handler/ssl/SslUtils.java at line 295.
What calls arrayContains()?
arrayContains() is called by 2 function(s): isTLSv13EnabledByJDK0, isTLSv13SupportedByJDK0.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free