Home / Class/ ConfigurationPropertiesTestTypeExcludeFilter Class — spring-boot Architecture

ConfigurationPropertiesTestTypeExcludeFilter Class — spring-boot Architecture

Architecture documentation for the ConfigurationPropertiesTestTypeExcludeFilter class in ConfigurationPropertiesScanTests.java from the spring-boot codebase.

Entity Profile

Relationship Graph

Source Code

core/spring-boot/src/test/java/org/springframework/boot/context/properties/ConfigurationPropertiesScanTests.java lines 145–164

	static class ConfigurationPropertiesTestTypeExcludeFilter extends TypeExcludeFilter {

		@Override
		public boolean match(MetadataReader metadataReader, MetadataReaderFactory metadataReaderFactory)
				throws IOException {
			AssignableTypeFilter typeFilter = new AssignableTypeFilter(BFirstProperties.class);
			return !typeFilter.match(metadataReader, metadataReaderFactory);
		}

		@Override
		public boolean equals(@Nullable Object o) {
			return (this == o);
		}

		@Override
		public int hashCode() {
			return Objects.hash(42);
		}

	}

Domain

Analyze Your Own Codebase

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

Try Supermodel Free