Home / Class/ ImmutablePrimitiveProperties Class — spring-boot Architecture

ImmutablePrimitiveProperties Class — spring-boot Architecture

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

Entity Profile

Relationship Graph

Source Code

configuration-metadata/spring-boot-configuration-processor/src/test/java/org/springframework/boot/configurationsample/immutable/ImmutablePrimitiveProperties.java lines 24–55

@SuppressWarnings("unused")
public class ImmutablePrimitiveProperties {

	private final boolean flag;

	private final byte octet;

	private final char letter;

	private final short number;

	private final int counter;

	private final long value;

	private final float percentage;

	private final double ratio;

	public ImmutablePrimitiveProperties(boolean flag, byte octet, char letter, short number, int counter, long value,
			float percentage, double ratio) {
		this.flag = flag;
		this.octet = octet;
		this.letter = letter;
		this.number = number;
		this.counter = counter;
		this.value = value;
		this.percentage = percentage;
		this.ratio = ratio;
	}

}

Domain

Analyze Your Own Codebase

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

Try Supermodel Free