Home / Class/ SimpleArrayProperties Class — spring-boot Architecture

SimpleArrayProperties Class — spring-boot Architecture

Architecture documentation for the SimpleArrayProperties class in SimpleArrayProperties.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/simple/SimpleArrayProperties.java lines 28–75

@TestConfigurationProperties("array")
public class SimpleArrayProperties {

	private int[] primitive;

	private String[] simple;

	private Holder[] inner;

	private Map<String, Integer>[] nameToInteger;

	public int[] getPrimitive() {
		return this.primitive;
	}

	public void setPrimitive(int[] primitive) {
		this.primitive = primitive;
	}

	public String[] getSimple() {
		return this.simple;
	}

	public void setSimple(String[] simple) {
		this.simple = simple;
	}

	public Holder[] getInner() {
		return this.inner;
	}

	public void setInner(Holder[] inner) {
		this.inner = inner;
	}

	public Map<String, Integer>[] getNameToInteger() {
		return this.nameToInteger;
	}

	public void setNameToInteger(Map<String, Integer>[] nameToInteger) {
		this.nameToInteger = nameToInteger;
	}

	static class Holder {

	}

}

Domain

Analyze Your Own Codebase

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

Try Supermodel Free