ExampleValueBean Class — spring-boot Architecture
Architecture documentation for the ExampleValueBean 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 454–495
static class ExampleValueBean {
private final int intValue;
private final long longValue;
private final boolean booleanValue;
private final String stringValue;
private final ExampleEnum enumValue;
ExampleValueBean(int intValue, long longValue, boolean booleanValue, String stringValue,
ExampleEnum enumValue) {
this.intValue = intValue;
this.longValue = longValue;
this.booleanValue = booleanValue;
this.stringValue = stringValue;
this.enumValue = enumValue;
}
int getIntValue() {
return this.intValue;
}
long getLongValue() {
return this.longValue;
}
boolean isBooleanValue() {
return this.booleanValue;
}
String getStringValue() {
return this.stringValue;
}
ExampleEnum getEnumValue() {
return this.enumValue;
}
}
Domain
Source
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free