Home / Class/ CustomMapWithoutDefaultCtor Class — spring-boot Architecture

CustomMapWithoutDefaultCtor Class — spring-boot Architecture

Architecture documentation for the CustomMapWithoutDefaultCtor 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 805–836

	static class CustomMapWithoutDefaultCtor {

		private final CustomMap customMap;

		CustomMapWithoutDefaultCtor(CustomMap customMap) {
			this.customMap = customMap;
		}

		CustomMap getCustomMap() {
			return this.customMap;
		}

		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