equals() — spring-boot Function Reference
Architecture documentation for the equals() function in StandardConfigDataResource.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD af6be375_3469_ef6a_1f1b_02b40476acb1["equals()"] 10779fbd_0208_481e_0035_e95f0a2ad514["isSameUnderlyingResource()"] 10779fbd_0208_481e_0035_e95f0a2ad514 -->|calls| af6be375_3469_ef6a_1f1b_02b40476acb1 8eb8ae78_8aad_a4f6_0b09_4e458b273420["isSameFile()"] 8eb8ae78_8aad_a4f6_0b09_4e458b273420 -->|calls| af6be375_3469_ef6a_1f1b_02b40476acb1 10779fbd_0208_481e_0035_e95f0a2ad514["isSameUnderlyingResource()"] af6be375_3469_ef6a_1f1b_02b40476acb1 -->|calls| 10779fbd_0208_481e_0035_e95f0a2ad514 style af6be375_3469_ef6a_1f1b_02b40476acb1 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
core/spring-boot/src/main/java/org/springframework/boot/context/config/StandardConfigDataResource.java lines 94–104
@Override
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (obj == null || getClass() != obj.getClass()) {
return false;
}
StandardConfigDataResource other = (StandardConfigDataResource) obj;
return (this.emptyDirectory == other.emptyDirectory) && isSameUnderlyingResource(this.resource, other.resource);
}
Domain
Subdomains
Called By
- isSameFile()
- isSameUnderlyingResource()
Source
Frequently Asked Questions
What does equals() do?
equals() is a function in the spring-boot codebase.
What does equals() call?
equals() calls 1 function(s): isSameUnderlyingResource.
What calls equals()?
equals() is called by 2 function(s): isSameFile, isSameUnderlyingResource.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free