Uses of Class
org.apache.pivot.collections.Sequence.Tree.Path

Packages that use Sequence.Tree.Path
org.apache.pivot.collections Defines a set of classes and interfaces that serve as generic collections as well as the data model for UI components. 
 

Uses of Sequence.Tree.Path in org.apache.pivot.collections
 

Subclasses of Sequence.Tree.Path in org.apache.pivot.collections
static class Sequence.Tree.ImmutablePath
          Class representing an immutable path.
 

Methods in org.apache.pivot.collections that return Sequence.Tree.Path
static Sequence.Tree.Path Sequence.Tree.Path.forDepth(int depth)
           
 Sequence.Tree.Path Sequence.Tree.ItemIterator.getPath()
          Gets the path within the nested sequence to the item most recently returned by a call to next().
static
<T> Sequence.Tree.Path
Sequence.Tree.pathOf(Sequence<T> sequence, T item)
          Returns the path to an item in a nested sequence.
static
<T> Sequence.Tree.Path
Sequence.Tree.remove(Sequence<T> sequence, T item)
          Removes the first occurrence of an item from a nested sequence.
 

Methods in org.apache.pivot.collections with parameters of type Sequence.Tree.Path
static
<T> int
Sequence.Tree.add(Sequence<T> sequence, T item, Sequence.Tree.Path path)
          Adds an item to a nested sequence.
static
<T> T
Sequence.Tree.get(Sequence<T> sequence, Sequence.Tree.Path path)
          Retrieves an item from a nested sequence.
static
<T> void
Sequence.Tree.insert(Sequence<T> sequence, T item, Sequence.Tree.Path path, int index)
          Inserts an item into a nested sequence.
static boolean Sequence.Tree.isDescendant(Sequence.Tree.Path ancestorPath, Sequence.Tree.Path descendantPath)
          Determines whether the path represented by the second argument is a descendant of the path represented by the first argument.
static
<T> Sequence<T>
Sequence.Tree.remove(Sequence<T> sequence, Sequence.Tree.Path path, int count)
          Removes an item from a nested sequence.
static
<T> T
Sequence.Tree.update(Sequence<T> sequence, Sequence.Tree.Path path, T item)
          Updates an item in a nested sequence.
 

Constructors in org.apache.pivot.collections with parameters of type Sequence.Tree.Path
Sequence.Tree.ImmutablePath(Sequence.Tree.Path path)
           
Sequence.Tree.Path(Sequence.Tree.Path path)
           
Sequence.Tree.Path(Sequence.Tree.Path path, int depth)