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

isCyclePresent() — spring-boot Function Reference

Architecture documentation for the isCyclePresent() function in PropertyDescriptor.java from the spring-boot codebase.

Function java GradlePlugin AotProcessing calls 1 called by 1

Entity Profile

Dependency Diagram

graph TD
  14ce7f55_4a26_2737_d6c6_7663fd55490c["isCyclePresent()"]
  36448759_7cce_fec8_b5d7_153f868e0a92["isNested()"]
  36448759_7cce_fec8_b5d7_153f868e0a92 -->|calls| 14ce7f55_4a26_2737_d6c6_7663fd55490c
  2f92313c_75ed_baa9_94c7_81e700548c9a["equals()"]
  14ce7f55_4a26_2737_d6c6_7663fd55490c -->|calls| 2f92313c_75ed_baa9_94c7_81e700548c9a
  style 14ce7f55_4a26_2737_d6c6_7663fd55490c fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

configuration-metadata/spring-boot-configuration-processor/src/main/java/org/springframework/boot/configurationprocessor/PropertyDescriptor.java lines 147–155

	private boolean isCyclePresent(Element returnType, Element element) {
		if (!(element.getEnclosingElement() instanceof TypeElement)) {
			return false;
		}
		if (element.getEnclosingElement().equals(returnType)) {
			return true;
		}
		return isCyclePresent(returnType, element.getEnclosingElement());
	}

Domain

Subdomains

Calls

Called By

Frequently Asked Questions

What does isCyclePresent() do?
isCyclePresent() is a function in the spring-boot codebase.
What does isCyclePresent() call?
isCyclePresent() calls 1 function(s): equals.
What calls isCyclePresent()?
isCyclePresent() is called by 1 function(s): isNested.

Analyze Your Own Codebase

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

Try Supermodel Free