Home / Type/ DifferenceType Type — spring-boot Architecture

DifferenceType Type — spring-boot Architecture

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

Entity Profile

Source Code

configuration-metadata/spring-boot-configuration-metadata-changelog-generator/src/main/java/org/springframework/boot/configurationmetadata/changelog/DifferenceType.java lines 24–48

enum DifferenceType {

	/**
	 * The entry has been added.
	 */
	ADDED,

	/**
	 * The entry has been made deprecated. It may or may not still exist in the previous
	 * version.
	 */
	DEPRECATED,

	/**
	 * The entry has been deleted.
	 */
	DELETED,

	/**
	 * The entry's default value has changed. The entry exists in both the previous and
	 * current versions, but its default value is different.
	 */
	DEFAULT_CHANGED

}

Analyze Your Own Codebase

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

Try Supermodel Free