buildPartial() — netty Function Reference
Architecture documentation for the buildPartial() function in WorldClockProtocol.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 3bd01aed_0259_ac52_5417_873d70b96ba8["buildPartial()"] d14d3f3f_ddf6_f864_b1be_5eccb64e18ed["Builder"] 3bd01aed_0259_ac52_5417_873d70b96ba8 -->|defined in| d14d3f3f_ddf6_f864_b1be_5eccb64e18ed a776de43_3d12_a869_9e1b_f3001fa85805["Builder()"] a776de43_3d12_a869_9e1b_f3001fa85805 -->|calls| 3bd01aed_0259_ac52_5417_873d70b96ba8 f0b74967_70ce_a5a5_1ed7_d1b4c43a4c5c["build()"] f0b74967_70ce_a5a5_1ed7_d1b4c43a4c5c -->|calls| 3bd01aed_0259_ac52_5417_873d70b96ba8 832a3e5d_0e9d_4521_8c44_4ab080c2f296["Location()"] 3bd01aed_0259_ac52_5417_873d70b96ba8 -->|calls| 832a3e5d_0e9d_4521_8c44_4ab080c2f296 ec49204d_6460_d609_5516_044c23fc6841["Locations()"] 3bd01aed_0259_ac52_5417_873d70b96ba8 -->|calls| ec49204d_6460_d609_5516_044c23fc6841 f0b74967_70ce_a5a5_1ed7_d1b4c43a4c5c["build()"] 3bd01aed_0259_ac52_5417_873d70b96ba8 -->|calls| f0b74967_70ce_a5a5_1ed7_d1b4c43a4c5c 69d136b6_91fe_96d7_45bc_5b8036c61a32["LocalTime()"] 3bd01aed_0259_ac52_5417_873d70b96ba8 -->|calls| 69d136b6_91fe_96d7_45bc_5b8036c61a32 bc855b61_6f26_b505_38e2_49bef53e7d6b["LocalTimes()"] 3bd01aed_0259_ac52_5417_873d70b96ba8 -->|calls| bc855b61_6f26_b505_38e2_49bef53e7d6b style 3bd01aed_0259_ac52_5417_873d70b96ba8 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
example/src/main/java/io/netty/example/worldclock/WorldClockProtocol.java lines 732–748
@Override
public io.netty.example.worldclock.WorldClockProtocol.Location buildPartial() {
io.netty.example.worldclock.WorldClockProtocol.Location result = new io.netty.example.worldclock.WorldClockProtocol.Location(this);
int from_bitField0_ = bitField0_;
int to_bitField0_ = 0;
if (((from_bitField0_ & 0x00000001) == 0x00000001)) {
to_bitField0_ |= 0x00000001;
}
result.continent_ = continent_;
if (((from_bitField0_ & 0x00000002) == 0x00000002)) {
to_bitField0_ |= 0x00000002;
}
result.city_ = city_;
result.bitField0_ = to_bitField0_;
onBuilt();
return result;
}
Domain
Subdomains
Source
Frequently Asked Questions
What does buildPartial() do?
buildPartial() is a function in the netty codebase, defined in example/src/main/java/io/netty/example/worldclock/WorldClockProtocol.java.
Where is buildPartial() defined?
buildPartial() is defined in example/src/main/java/io/netty/example/worldclock/WorldClockProtocol.java at line 732.
What does buildPartial() call?
buildPartial() calls 5 function(s): LocalTime, LocalTimes, Location, Locations, build.
What calls buildPartial()?
buildPartial() is called by 2 function(s): Builder, build.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free