Class NodeStack
- java.lang.Object
-
- org.eclipse.aether.internal.impl.collect.NodeStack
-
final class NodeStack extends java.lang.Object- See Also:
DefaultDependencyCollector
-
-
Field Summary
Fields Modifier and Type Field Description private DependencyNode[]nodesprivate intsize
-
Constructor Summary
Constructors Constructor Description NodeStack()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intfind(Artifact artifact)DependencyNodeget(int index)voidpop()voidpush(DependencyNode node)intsize()DependencyNodetop()java.lang.StringtoString()
-
-
-
Field Detail
-
nodes
private DependencyNode[] nodes
-
size
private int size
-
-
Method Detail
-
top
public DependencyNode top()
-
push
public void push(DependencyNode node)
-
pop
public void pop()
-
find
public int find(Artifact artifact)
-
size
public int size()
-
get
public DependencyNode get(int index)
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-