getConditionAndOutcomesBySource() — spring-boot Function Reference
Architecture documentation for the getConditionAndOutcomesBySource() function in ConditionEvaluationReport.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD 74dd21e3_f492_10a8_ed0e_b35e84460d51["getConditionAndOutcomesBySource()"] b60b1501_6523_f235_7257_d3b8e2482739["collectReportedConditionOutcomes()"] b60b1501_6523_f235_7257_d3b8e2482739 -->|calls| 74dd21e3_f492_10a8_ed0e_b35e84460d51 e2e8acc6_7aa2_1dea_f400_fa74e29fcf3b["logReport()"] e2e8acc6_7aa2_1dea_f400_fa74e29fcf3b -->|calls| 74dd21e3_f492_10a8_ed0e_b35e84460d51 00d782c6_832a_014b_e667_2150c67ac7be["getLogMessage()"] 00d782c6_832a_014b_e667_2150c67ac7be -->|calls| 74dd21e3_f492_10a8_ed0e_b35e84460d51 5a41398b_8a82_1d8c_aa7b_3b1b67c440f1["matches()"] 5a41398b_8a82_1d8c_aa7b_3b1b67c440f1 -->|calls| 74dd21e3_f492_10a8_ed0e_b35e84460d51 9f66673a_df4b_4203_34db_6cdbcdce26f2["isFullMatch()"] 74dd21e3_f492_10a8_ed0e_b35e84460d51 -->|calls| 9f66673a_df4b_4203_34db_6cdbcdce26f2 2aff1e8c_9d4c_40d5_51a3_a8019d398e92["addNoMatchOutcomeToAncestors()"] 74dd21e3_f492_10a8_ed0e_b35e84460d51 -->|calls| 2aff1e8c_9d4c_40d5_51a3_a8019d398e92 style 74dd21e3_f492_10a8_ed0e_b35e84460d51 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 114–124
public Map<String, ConditionAndOutcomes> getConditionAndOutcomesBySource() {
if (!this.addedAncestorOutcomes) {
this.outcomes.forEach((source, sourceOutcomes) -> {
if (!sourceOutcomes.isFullMatch()) {
addNoMatchOutcomeToAncestors(source);
}
});
this.addedAncestorOutcomes = true;
}
return Collections.unmodifiableMap(this.outcomes);
}
Domain
Subdomains
Calls
- addNoMatchOutcomeToAncestors()
- isFullMatch()
Source
Frequently Asked Questions
What does getConditionAndOutcomesBySource() do?
getConditionAndOutcomesBySource() is a function in the spring-boot codebase.
What does getConditionAndOutcomesBySource() call?
getConditionAndOutcomesBySource() calls 2 function(s): addNoMatchOutcomeToAncestors, isFullMatch.
What calls getConditionAndOutcomesBySource()?
getConditionAndOutcomesBySource() is called by 4 function(s): collectReportedConditionOutcomes, getLogMessage, logReport, matches.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free