ExampleValueBean Class — spring-boot Architecture
Architecture documentation for the ExampleValueBean class in JavaBeanBinderTests.java from the spring-boot codebase.
Entity Profile
Relationship Graph
Source Code
core/spring-boot/src/test/java/org/springframework/boot/context/properties/bind/JavaBeanBinderTests.java lines 628–670
static class ExampleValueBean {
private int intValue;
private long longValue;
private @Nullable String stringValue;
private @Nullable ExampleEnum enumValue;
int getIntValue() {
return this.intValue;
}
void setIntValue(int intValue) {
this.intValue = intValue;
}
long getLongValue() {
return this.longValue;
}
void setLongValue(long longValue) {
this.longValue = longValue;
}
@Nullable String getStringValue() {
return this.stringValue;
}
void setStringValue(@Nullable String stringValue) {
this.stringValue = stringValue;
}
@Nullable ExampleEnum getEnumValue() {
return this.enumValue;
}
void setEnumValue(@Nullable ExampleEnum enumValue) {
this.enumValue = enumValue;
}
}
Domain
Source
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free