usingMembersWithoutNameAtAll() — spring-boot Function Reference
Architecture documentation for the usingMembersWithoutNameAtAll() function in JsonWriterTests.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD 2be7cd00_2411_bcc0_5736_f655bf0415bc["usingMembersWithoutNameAtAll()"] 0d94726e_741b_9208_9d8c_ca4cd0f4cf12["of()"] 2be7cd00_2411_bcc0_5736_f655bf0415bc -->|calls| 0d94726e_741b_9208_9d8c_ca4cd0f4cf12 84506fbe_214d_f213_ad3f_496e15af47cb["usingMembers()"] 2be7cd00_2411_bcc0_5736_f655bf0415bc -->|calls| 84506fbe_214d_f213_ad3f_496e15af47cb d61ef6a0_daf3_14b5_0e3c_0e18dc46fd10["quoted()"] 2be7cd00_2411_bcc0_5736_f655bf0415bc -->|calls| d61ef6a0_daf3_14b5_0e3c_0e18dc46fd10 style 2be7cd00_2411_bcc0_5736_f655bf0415bc fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
core/spring-boot/src/test/java/org/springframework/boot/json/JsonWriterTests.java lines 450–456
@Test
void usingMembersWithoutNameAtAll() {
Couple couple = new Couple(PERSON, new Person("Spring", "Framework", 20));
JsonWriter<Couple> writer = JsonWriter.of((members) -> members.from(Couple::person2)
.usingMembers((personMembers) -> personMembers.from(Person::toString)));
assertThat(writer.writeToString(couple)).isEqualTo(quoted("Spring Framework (20)"));
}
Domain
Subdomains
Source
Frequently Asked Questions
What does usingMembersWithoutNameAtAll() do?
usingMembersWithoutNameAtAll() is a function in the spring-boot codebase.
What does usingMembersWithoutNameAtAll() call?
usingMembersWithoutNameAtAll() calls 3 function(s): of, quoted, usingMembers.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free