Home / Type/ SubClassedEnum Type — spring-boot Architecture

SubClassedEnum Type — spring-boot Architecture

Architecture documentation for the SubClassedEnum type/interface in AvailabilityChangeEventTests.java from the spring-boot codebase.

Entity Profile

Source Code

core/spring-boot/src/test/java/org/springframework/boot/availability/AvailabilityChangeEventTests.java lines 94–116

	enum SubClassedEnum implements AvailabilityState {

		ONE {

			@Override
			String getDescription() {
				return "I have been overridden";
			}

		},

		TWO {

			@Override
			String getDescription() {
				return "I have also been overridden";
			}

		};

		abstract String getDescription();

	}

Analyze Your Own Codebase

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

Try Supermodel Free