Record Class BindingGraphTrait.UnsatisfiedDependency
java.lang.Object
java.lang.Record
build.codemodel.dependency.injection.BindingGraphTrait.UnsatisfiedDependency
- Record Components:
from- the binding that requires the dependencyedge- the edge, carrying the unresolvedDependency
- Enclosing class:
BindingGraphTrait
public static record BindingGraphTrait.UnsatisfiedDependency(BindingNode from, DependencyEdge edge)
extends Record
Describes a dependency from a registered binding to a type that is not registered as an
explicit binding in the context. Produced when a dependency is satisfied at runtime by an
auto-bound or otherwise untracked type — the edge exists in the contributor event log but
cannot be represented as a graph edge because no
BindingNode was produced for the
target type.- Since:
- Apr-2026
- Author:
- reed.vonredwitz
-
Constructor Summary
ConstructorsConstructorDescriptionUnsatisfiedDependency(BindingNode from, DependencyEdge edge) Creates an instance of aUnsatisfiedDependencyrecord class. -
Method Summary
Modifier and TypeMethodDescriptionedge()Returns the value of theedgerecord component.final booleanIndicates whether some other object is "equal to" this one.from()Returns the value of thefromrecord component.final inthashCode()Returns a hash code value for this object.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
Method Details
-
toString
-
hashCode
-
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared withObjects::equals(Object,Object). -
from
-
edge
-