AdaptiveLittleEndianHeapByteBufTest Class — netty Architecture
Architecture documentation for the AdaptiveLittleEndianHeapByteBufTest class in AdaptiveLittleEndianHeapByteBufTest.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD b4e28cd0_73a3_8497_0806_01f3413e6660["AdaptiveLittleEndianHeapByteBufTest"] ff0c657a_6895_2b35_75e3_8776f0ca7694["AdaptiveLittleEndianHeapByteBufTest.java"] b4e28cd0_73a3_8497_0806_01f3413e6660 -->|defined in| ff0c657a_6895_2b35_75e3_8776f0ca7694 ed9d48bf_dfc9_58c6_6278_1e63e377e952["ByteBuf()"] b4e28cd0_73a3_8497_0806_01f3413e6660 -->|method| ed9d48bf_dfc9_58c6_6278_1e63e377e952
Relationship Graph
Source Code
buffer/src/test/java/io/netty/buffer/AdaptiveLittleEndianHeapByteBufTest.java lines 24–34
public class AdaptiveLittleEndianHeapByteBufTest extends AbstractAdaptiveByteBufTest {
@Override
protected ByteBuf alloc(AdaptiveByteBufAllocator allocator, int length, int maxCapacity) {
ByteBuf buffer = allocator.heapBuffer(length, maxCapacity)
.order(ByteOrder.LITTLE_ENDIAN);
assertSame(ByteOrder.LITTLE_ENDIAN, buffer.order());
assertFalse(buffer.isDirect());
return buffer;
}
}
Source
Frequently Asked Questions
What is the AdaptiveLittleEndianHeapByteBufTest class?
AdaptiveLittleEndianHeapByteBufTest is a class in the netty codebase, defined in buffer/src/test/java/io/netty/buffer/AdaptiveLittleEndianHeapByteBufTest.java.
Where is AdaptiveLittleEndianHeapByteBufTest defined?
AdaptiveLittleEndianHeapByteBufTest is defined in buffer/src/test/java/io/netty/buffer/AdaptiveLittleEndianHeapByteBufTest.java at line 24.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free