Home / Class/ CustomMap Class — spring-boot Architecture

CustomMap Class — spring-boot Architecture

Architecture documentation for the CustomMap class in MapBinderTests.java from the spring-boot codebase.

Entity Profile

Relationship Graph

Source Code

core/spring-boot/src/test/java/org/springframework/boot/context/properties/bind/MapBinderTests.java lines 817–834

		static final class CustomMap extends AbstractMap<String, Object> {

			private final String source;

			CustomMap(String source) {
				this.source = source;
			}

			@Override
			public Set<Entry<String, Object>> entrySet() {
				return Collections.emptySet();
			}

			String getSource() {
				return this.source;
			}

		}

Domain

Analyze Your Own Codebase

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

Try Supermodel Free