Home / Function/ getShort() — netty Function Reference

getShort() — netty Function Reference

Architecture documentation for the getShort() function in AbstractByteBuf.java from the netty codebase.

Function java Buffer Telemetry calls 2 called by 2

Entity Profile

Dependency Diagram

graph TD
  bd5a7a8f_8a9e_87d2_e0e6_a07c06211c97["getShort()"]
  bbab270f_457a_3319_83a8_0a0540484666["AbstractByteBuf"]
  bd5a7a8f_8a9e_87d2_e0e6_a07c06211c97 -->|defined in| bbab270f_457a_3319_83a8_0a0540484666
  c4e27779_a2b4_6ea8_ab50_310e08743297["getUnsignedShort()"]
  c4e27779_a2b4_6ea8_ab50_310e08743297 -->|calls| bd5a7a8f_8a9e_87d2_e0e6_a07c06211c97
  8ccaebdc_c204_570d_f56f_3da3c9f214ca["getChar()"]
  8ccaebdc_c204_570d_f56f_3da3c9f214ca -->|calls| bd5a7a8f_8a9e_87d2_e0e6_a07c06211c97
  bc9f46f3_e305_58ca_4e9e_9b8ccbb764fc["checkIndex()"]
  bd5a7a8f_8a9e_87d2_e0e6_a07c06211c97 -->|calls| bc9f46f3_e305_58ca_4e9e_9b8ccbb764fc
  8f3f49cb_34bd_dfa5_a0f2_3d0b6e1616e3["_getShort()"]
  bd5a7a8f_8a9e_87d2_e0e6_a07c06211c97 -->|calls| 8f3f49cb_34bd_dfa5_a0f2_3d0b6e1616e3
  style bd5a7a8f_8a9e_87d2_e0e6_a07c06211c97 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

buffer/src/main/java/io/netty/buffer/AbstractByteBuf.java lines 371–375

    @Override
    public short getShort(int index) {
        checkIndex(index, 2);
        return _getShort(index);
    }

Domain

Subdomains

Frequently Asked Questions

What does getShort() do?
getShort() is a function in the netty codebase, defined in buffer/src/main/java/io/netty/buffer/AbstractByteBuf.java.
Where is getShort() defined?
getShort() is defined in buffer/src/main/java/io/netty/buffer/AbstractByteBuf.java at line 371.
What does getShort() call?
getShort() calls 2 function(s): _getShort, checkIndex.
What calls getShort()?
getShort() is called by 2 function(s): getChar, getUnsignedShort.

Analyze Your Own Codebase

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

Try Supermodel Free