Home / Class/ NestedConstructorBeanWithEmptyDefaultValueForOptionalTypes Class — spring-boot Architecture

NestedConstructorBeanWithEmptyDefaultValueForOptionalTypes Class — spring-boot Architecture

Architecture documentation for the NestedConstructorBeanWithEmptyDefaultValueForOptionalTypes class in ValueObjectBinderTests.java from the spring-boot codebase.

Entity Profile

Relationship Graph

Source Code

core/spring-boot/src/test/java/org/springframework/boot/context/properties/bind/ValueObjectBinderTests.java lines 835–847

	static class NestedConstructorBeanWithEmptyDefaultValueForOptionalTypes {

		private final Optional<String> optionalValue;

		NestedConstructorBeanWithEmptyDefaultValueForOptionalTypes(@DefaultValue Optional<String> optionalValue) {
			this.optionalValue = optionalValue;
		}

		Optional<String> getOptionalValue() {
			return this.optionalValue;
		}

	}

Domain

Analyze Your Own Codebase

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

Try Supermodel Free