WithPublicObjectToObjectMethod Class — spring-boot Architecture
Architecture documentation for the WithPublicObjectToObjectMethod class in WithPublicObjectToObjectMethod.java from the spring-boot codebase.
Entity Profile
Source Code
core/spring-boot/src/test/java/org/springframework/boot/context/properties/WithPublicObjectToObjectMethod.java lines 27–43
public class WithPublicObjectToObjectMethod {
private final String value;
WithPublicObjectToObjectMethod(String value) {
this.value = value;
}
String getValue() {
return this.value;
}
public static Optional<WithPublicObjectToObjectMethod> from(String value) {
return Optional.of(new WithPublicObjectToObjectMethod(value));
}
}
Source
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free