Home / Function/ String() — netty Function Reference

String() — netty Function Reference

Architecture documentation for the String() function in ObjectUtil.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  84876200_d933_9aac_911b_3a71dfd0f9ba["String()"]
  13c1c162_0c7f_9250_1333_d3520660541f["ObjectUtil"]
  84876200_d933_9aac_911b_3a71dfd0f9ba -->|defined in| 13c1c162_0c7f_9250_1333_d3520660541f
  d752cc30_8bab_31ab_8b7a_24851ce21ff5["checkNonEmpty()"]
  84876200_d933_9aac_911b_3a71dfd0f9ba -->|calls| d752cc30_8bab_31ab_8b7a_24851ce21ff5
  style 84876200_d933_9aac_911b_3a71dfd0f9ba fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

common/src/main/java/io/netty/util/internal/ObjectUtil.java lines 284–289

    public static String checkNonEmpty(final String value, final String name) {
        if (checkNotNull(value, name).isEmpty()) {
            throw new IllegalArgumentException("Param '" + name + "' must not be empty");
        }
        return value;
    }

Domain

Subdomains

Frequently Asked Questions

What does String() do?
String() is a function in the netty codebase, defined in common/src/main/java/io/netty/util/internal/ObjectUtil.java.
Where is String() defined?
String() is defined in common/src/main/java/io/netty/util/internal/ObjectUtil.java at line 284.
What does String() call?
String() calls 1 function(s): checkNonEmpty.

Analyze Your Own Codebase

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

Try Supermodel Free