isFullMatch() — spring-boot Function Reference
Architecture documentation for the isFullMatch() function in ConditionEvaluationReport.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD 9f66673a_df4b_4203_34db_6cdbcdce26f2["isFullMatch()"] 74dd21e3_f492_10a8_ed0e_b35e84460d51["getConditionAndOutcomesBySource()"] 74dd21e3_f492_10a8_ed0e_b35e84460d51 -->|calls| 9f66673a_df4b_4203_34db_6cdbcdce26f2 b0ffdc9a_7bf7_b836_e663_938ca37685b6["getDelta()"] b0ffdc9a_7bf7_b836_e663_938ca37685b6 -->|calls| 9f66673a_df4b_4203_34db_6cdbcdce26f2 b60b1501_6523_f235_7257_d3b8e2482739["collectReportedConditionOutcomes()"] b60b1501_6523_f235_7257_d3b8e2482739 -->|calls| 9f66673a_df4b_4203_34db_6cdbcdce26f2 7aa7be61_9efb_7658_e525_41c5e15866c6["logPositiveMatches()"] 7aa7be61_9efb_7658_e525_41c5e15866c6 -->|calls| 9f66673a_df4b_4203_34db_6cdbcdce26f2 02e8b4aa_1a04_a03a_d06f_0d4fc1026e75["logNegativeMatches()"] 02e8b4aa_1a04_a03a_d06f_0d4fc1026e75 -->|calls| 9f66673a_df4b_4203_34db_6cdbcdce26f2 4045300f_88b1_c7e4_1bff_e7c58cbe09af["getOutcome()"] 9f66673a_df4b_4203_34db_6cdbcdce26f2 -->|calls| 4045300f_88b1_c7e4_1bff_e7c58cbe09af style 9f66673a_df4b_4203_34db_6cdbcdce26f2 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 235–242
public boolean isFullMatch() {
for (ConditionAndOutcome conditionAndOutcomes : this) {
if (!conditionAndOutcomes.getOutcome().isMatch()) {
return false;
}
}
return true;
}
Domain
Subdomains
Calls
Called By
Source
Frequently Asked Questions
What does isFullMatch() do?
isFullMatch() is a function in the spring-boot codebase.
What does isFullMatch() call?
isFullMatch() calls 1 function(s): getOutcome.
What calls isFullMatch()?
isFullMatch() is called by 5 function(s): collectReportedConditionOutcomes, getConditionAndOutcomesBySource, getDelta, logNegativeMatches, logPositiveMatches.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free