Package dagger.model
Class ComponentPath
- java.lang.Object
-
- dagger.model.ComponentPath
-
public abstract class ComponentPath extends java.lang.ObjectA path containing a component and all of its ancestor components.
-
-
Constructor Summary
Constructors Constructor Description ComponentPath()
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description booleanatRoot()ComponentPathchildPath(javax.lang.model.element.TypeElement child)Returns the path from the root component to thechildof the current component.abstract com.google.common.collect.ImmutableList<javax.lang.model.element.TypeElement>components()Returns the component types, starting from the root component and ending with the current component.static ComponentPathcreate(java.lang.Iterable<javax.lang.model.element.TypeElement> components)Returns a newComponentPathfromcomponents.javax.lang.model.element.TypeElementcurrentComponent()Returns the component at the end of the path.abstract booleanequals(java.lang.Object obj)abstract inthashCode()ComponentPathparent()Returns this path's parent path.javax.lang.model.element.TypeElementparentComponent()Returns the parent of the currentComponent() current component}.javax.lang.model.element.TypeElementrootComponent()Returns the rootComponent- orProductionComponent-annotated typejava.lang.StringtoString()
-
-
-
Method Detail
-
create
public static ComponentPath create(java.lang.Iterable<javax.lang.model.element.TypeElement> components)
Returns a newComponentPathfromcomponents.
-
components
public abstract com.google.common.collect.ImmutableList<javax.lang.model.element.TypeElement> components()
Returns the component types, starting from the root component and ending with the current component.
-
rootComponent
public final javax.lang.model.element.TypeElement rootComponent()
Returns the rootComponent- orProductionComponent-annotated type
-
currentComponent
@Memoized public javax.lang.model.element.TypeElement currentComponent()
Returns the component at the end of the path.
-
parentComponent
public final javax.lang.model.element.TypeElement parentComponent()
Returns the parent of the currentComponent() current component}.- Throws:
java.lang.IllegalStateException- if the current graph is the root component
-
parent
public final ComponentPath parent()
Returns this path's parent path.- Throws:
java.lang.IllegalStateException- if the current graph is the root component
-
childPath
public final ComponentPath childPath(javax.lang.model.element.TypeElement child)
Returns the path from the root component to thechildof the current component.
-
atRoot
public final boolean atRoot()
-
toString
public final java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
hashCode
@Memoized public abstract int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
equals
public abstract boolean equals(java.lang.Object obj)
- Overrides:
equalsin classjava.lang.Object
-
-