GenericBuilderProperties Class — spring-boot Architecture
Architecture documentation for the GenericBuilderProperties class in GenericBuilderProperties.java from the spring-boot codebase.
Entity Profile
Source Code
configuration-metadata/spring-boot-configuration-processor/src/test/java/org/springframework/boot/configurationsample/generic/GenericBuilderProperties.java lines 25–39
public class GenericBuilderProperties<T extends GenericBuilderProperties<T>> {
private int number;
public int getNumber() {
return this.number;
}
@SuppressWarnings("unchecked")
public T setNumber(int number) {
this.number = number;
return (T) this;
}
}
Source
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free