copy() — spring-boot Function Reference
Architecture documentation for the copy() function in ConfigData.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD 32824823_179c_c257_8c58_0a12903bc157["copy()"] f26b498a_7f2e_b4cb_3d0d_160c233bcc6b["without()"] f26b498a_7f2e_b4cb_3d0d_160c233bcc6b -->|calls| 32824823_179c_c257_8c58_0a12903bc157 4a9a6df1_5300_17a7_bd26_0eda4fa1cccc["with()"] 4a9a6df1_5300_17a7_bd26_0eda4fa1cccc -->|calls| 32824823_179c_c257_8c58_0a12903bc157 02534033_48d9_6053_3a5a_8ce72c8157d3["Options()"] 32824823_179c_c257_8c58_0a12903bc157 -->|calls| 02534033_48d9_6053_3a5a_8ce72c8157d3 style 32824823_179c_c257_8c58_0a12903bc157 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
core/spring-boot/src/main/java/org/springframework/boot/context/config/ConfigData.java lines 243–248
private Options copy(Consumer<EnumSet<Option>> processor) {
EnumSet<Option> options = (!this.options.isEmpty()) ? EnumSet.copyOf(this.options)
: EnumSet.noneOf(Option.class);
processor.accept(options);
return new Options(options);
}
Domain
Subdomains
Calls
- Options()
Called By
- with()
- without()
Source
Frequently Asked Questions
What does copy() do?
copy() is a function in the spring-boot codebase.
What does copy() call?
copy() calls 1 function(s): Options.
What calls copy()?
copy() is called by 2 function(s): with, without.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free