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

getMatchOutcomes() — spring-boot Function Reference

Architecture documentation for the getMatchOutcomes() function in AbstractNestedCondition.java from the spring-boot codebase.

Function java GradlePlugin DslExtensions calls 2 called by 1

Entity Profile

Dependency Diagram

graph TD
  ba132b35_1915_1396_126f_b2386ee4f94c["getMatchOutcomes()"]
  b5c95514_0c1a_5762_1d83_d3030bcb5b09["MemberMatchOutcomes()"]
  b5c95514_0c1a_5762_1d83_d3030bcb5b09 -->|calls| ba132b35_1915_1396_126f_b2386ee4f94c
  ed3340b1_252e_ced5_8b07_9bdc128445ba["MemberOutcomes()"]
  ba132b35_1915_1396_126f_b2386ee4f94c -->|calls| ed3340b1_252e_ced5_8b07_9bdc128445ba
  d2287976_be13_e4b1_9ffe_577e563cb9fe["getUltimateOutcome()"]
  ba132b35_1915_1396_126f_b2386ee4f94c -->|calls| d2287976_be13_e4b1_9ffe_577e563cb9fe
  style ba132b35_1915_1396_126f_b2386ee4f94c fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

core/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/condition/AbstractNestedCondition.java lines 169–174

		List<ConditionOutcome> getMatchOutcomes() {
			List<ConditionOutcome> outcomes = new ArrayList<>();
			this.memberConditions.forEach((metadata, conditions) -> outcomes
				.add(new MemberOutcomes(this.context, metadata, conditions).getUltimateOutcome()));
			return Collections.unmodifiableList(outcomes);
		}

Domain

Subdomains

Calls

  • MemberOutcomes()
  • getUltimateOutcome()

Called By

  • MemberMatchOutcomes()

Frequently Asked Questions

What does getMatchOutcomes() do?
getMatchOutcomes() is a function in the spring-boot codebase.
What does getMatchOutcomes() call?
getMatchOutcomes() calls 2 function(s): MemberOutcomes, getUltimateOutcome.
What calls getMatchOutcomes()?
getMatchOutcomes() is called by 1 function(s): MemberMatchOutcomes.

Analyze Your Own Codebase

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

Try Supermodel Free