equals() — spring-boot Function Reference
Architecture documentation for the equals() function in ConditionEvaluationReport.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD 4cc56401_f9b8_77d5_bfbe_c92fd76c0795["equals()"] fa50f4d6_b485_a36e_ec52_6517bcd371be["isInfoOrDebug()"] fa50f4d6_b485_a36e_ec52_6517bcd371be -->|calls| 4cc56401_f9b8_77d5_bfbe_c92fd76c0795 e2e8acc6_7aa2_1dea_f400_fa74e29fcf3b["logReport()"] e2e8acc6_7aa2_1dea_f400_fa74e29fcf3b -->|calls| 4cc56401_f9b8_77d5_bfbe_c92fd76c0795 6479ba35_f157_1065_a9b7_19e3cb621f41["isInfoOrDebug()"] 6479ba35_f157_1065_a9b7_19e3cb621f41 -->|calls| 4cc56401_f9b8_77d5_bfbe_c92fd76c0795 style 4cc56401_f9b8_77d5_bfbe_c92fd76c0795 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
core/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/condition/ConditionEvaluationReport.java lines 282–293
@Override
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (obj == null || getClass() != obj.getClass()) {
return false;
}
ConditionAndOutcome other = (ConditionAndOutcome) obj;
return (ObjectUtils.nullSafeEquals(this.condition.getClass(), other.condition.getClass())
&& ObjectUtils.nullSafeEquals(this.outcome, other.outcome));
}
Domain
Subdomains
Called By
- isInfoOrDebug()
- isInfoOrDebug()
- logReport()
Source
Frequently Asked Questions
What does equals() do?
equals() is a function in the spring-boot codebase.
What calls equals()?
equals() is called by 3 function(s): isInfoOrDebug, isInfoOrDebug, logReport.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free