Home / Class/ WithEnumProperties Class — spring-boot Architecture

WithEnumProperties Class — spring-boot Architecture

Architecture documentation for the WithEnumProperties class in ConfigurationPropertiesTests.java from the spring-boot codebase.

Entity Profile

Relationship Graph

Source Code

core/spring-boot/src/test/java/org/springframework/boot/context/properties/ConfigurationPropertiesTests.java lines 2051–2075

	@EnableConfigurationProperties
	@ConfigurationProperties("test")
	static class WithEnumProperties {

		private @Nullable FooEnum theValue;

		private @Nullable List<FooEnum> theValues;

		void setTheValue(@Nullable FooEnum value) {
			this.theValue = value;
		}

		@Nullable FooEnum getTheValue() {
			return this.theValue;
		}

		@Nullable List<FooEnum> getTheValues() {
			return this.theValues;
		}

		void setTheValues(@Nullable List<FooEnum> theValues) {
			this.theValues = theValues;
		}

	}

Domain

Analyze Your Own Codebase

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

Try Supermodel Free