Home / Function/ getTimeIfNotExcluded() — spring-boot Function Reference

getTimeIfNotExcluded() — spring-boot Function Reference

Architecture documentation for the getTimeIfNotExcluded() function in BuildInfoProperties.java from the spring-boot codebase.

Entity Profile

Dependency Diagram

graph TD
  beb26ab7_fc07_c46b_da06_ae0cceedc7e5["getTimeIfNotExcluded()"]
  bcb833b0_2efd_5cb3_1944_3f027c02ac3c["getIfNotExcluded()"]
  beb26ab7_fc07_c46b_da06_ae0cceedc7e5 -->|calls| bcb833b0_2efd_5cb3_1944_3f027c02ac3c
  61df5f03_1707_9117_be62_882694de08c9["getTime()"]
  beb26ab7_fc07_c46b_da06_ae0cceedc7e5 -->|calls| 61df5f03_1707_9117_be62_882694de08c9
  style beb26ab7_fc07_c46b_da06_ae0cceedc7e5 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

build-plugin/spring-boot-gradle-plugin/src/main/java/org/springframework/boot/gradle/tasks/buildinfo/BuildInfoProperties.java lines 127–132

	@Input
	@Optional
	@Nullable Instant getTimeIfNotExcluded() {
		String time = getIfNotExcluded(getTime(), "time", this.creationTime);
		return (time != null) ? Instant.parse(time) : null;
	}

Domain

Subdomains

Calls

Frequently Asked Questions

What does getTimeIfNotExcluded() do?
getTimeIfNotExcluded() is a function in the spring-boot codebase.
What does getTimeIfNotExcluded() call?
getTimeIfNotExcluded() calls 2 function(s): getIfNotExcluded, getTime.

Analyze Your Own Codebase

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

Try Supermodel Free