Home / Class/ CharSequenceToLongConverter Class — spring-boot Architecture

CharSequenceToLongConverter Class — spring-boot Architecture

Architecture documentation for the CharSequenceToLongConverter class in ConfigurationPropertiesCharSequenceToObjectConverterTests.java from the spring-boot codebase.

Entity Profile

Relationship Graph

Source Code

core/spring-boot/src/test/java/org/springframework/boot/context/properties/ConfigurationPropertiesCharSequenceToObjectConverterTests.java lines 107–114

	static class CharSequenceToLongConverter implements Converter<CharSequence, Long> {

		@Override
		public Long convert(CharSequence source) {
			return Long.parseLong(source.toString()) + 1;
		}

	}

Domain

Analyze Your Own Codebase

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

Try Supermodel Free