Home / Class/ EnumFailureProperties Class — spring-boot Architecture

EnumFailureProperties Class — spring-boot Architecture

Architecture documentation for the EnumFailureProperties class in BindFailureAnalyzerTests.java from the spring-boot codebase.

Entity Profile

Relationship Graph

Source Code

core/spring-boot/src/test/java/org/springframework/boot/diagnostics/analyzer/BindFailureAnalyzerTests.java lines 247–260

	@ConfigurationProperties("test.foo")
	static class EnumFailureProperties {

		private @Nullable Set<Fruit> fruit;

		@Nullable Set<Fruit> getFruit() {
			return this.fruit;
		}

		void setFruit(@Nullable Set<Fruit> fruit) {
			this.fruit = fruit;
		}

	}

Domain

Analyze Your Own Codebase

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

Try Supermodel Free