Uses of Class
elki.index.tree.IndexTreePath
-
Packages that use IndexTreePath Package Description elki.index.tree -
-
Uses of IndexTreePath in elki.index.tree
Fields in elki.index.tree declared as IndexTreePath Modifier and Type Field Description private IndexTreePath<E>IndexTreePath. parentPathPath representing the parent, null if lastPathComponent represents the root.Fields in elki.index.tree with type parameters of type IndexTreePath Modifier and Type Field Description java.util.Iterator<IndexTreePath<E>>BreadthFirstEnumeration. EMPTY_ENUMERATIONRepresents an empty enumeration.private java.util.Queue<java.util.Iterator<IndexTreePath<E>>>BreadthFirstEnumeration. queueThe queue for the enumeration.Methods in elki.index.tree that return IndexTreePath Modifier and Type Method Description IndexTreePath<E>IndexTreePath. getParentPath()Returns a path containing all the elements of this object, except the last path component.IndexTreePath<E>IndexTree. getRootPath()Returns the path to the root of this tree.IndexTreePath<E>BreadthFirstEnumeration. next()Returns the next element of this enumeration if this enumeration object has at least one more element to provide.Methods in elki.index.tree that return types with arguments of type IndexTreePath Modifier and Type Method Description java.util.Iterator<IndexTreePath<E>>AbstractNode. children(IndexTreePath<E> parentPath)java.util.Iterator<IndexTreePath<E>>Node. children(IndexTreePath<E> parentPath)Returns an enumeration of the children paths of this node.Methods in elki.index.tree with parameters of type IndexTreePath Modifier and Type Method Description java.util.Iterator<IndexTreePath<E>>AbstractNode. children(IndexTreePath<E> parentPath)java.util.Iterator<IndexTreePath<E>>Node. children(IndexTreePath<E> parentPath)Returns an enumeration of the children paths of this node.Constructors in elki.index.tree with parameters of type IndexTreePath Constructor Description BreadthFirstEnumeration(IndexTree<N,E> index, IndexTreePath<E> rootPath)Creates a new breadth first enumeration with the specified node as root node.IndexTreePath(IndexTreePath<E> parent, E entry, int index)Constructs a new IndexPath.
-