ehcache

Uses of Interface
net.sf.ehcache.store.compound.factories.AATreeSet.Node

Packages that use AATreeSet.Node
net.sf.ehcache.store.compound.factories This package contains the concrete element substitute factory implementations. 
 

Uses of AATreeSet.Node in net.sf.ehcache.store.compound.factories
 

Classes in net.sf.ehcache.store.compound.factories that implement AATreeSet.Node
static class AATreeSet.AbstractTreeNode<E>
          Abstract node implementation that can be extended with a custom payload.
 class Region
          Class that represents the regions held within this set.
 

Methods in net.sf.ehcache.store.compound.factories that return AATreeSet.Node
 AATreeSet.Node<E> AATreeSet.Node.getLeft()
          Get this node's left child.
 AATreeSet.Node<E> AATreeSet.AbstractTreeNode.getLeft()
          Get this node's left child.
 AATreeSet.Node<E> AATreeSet.Node.getRight()
          Get this node's right child.
 AATreeSet.Node<E> AATreeSet.AbstractTreeNode.getRight()
          Get this node's right child.
protected  AATreeSet.Node<T> AATreeSet.getRoot()
          Returns the root node of this tree.
 

Methods in net.sf.ehcache.store.compound.factories with parameters of type AATreeSet.Node
 void Region.setLeft(AATreeSet.Node<Comparable> l)
           
 void AATreeSet.Node.setLeft(AATreeSet.Node<E> node)
          Set this node's left child.
 void AATreeSet.AbstractTreeNode.setLeft(AATreeSet.Node<E> node)
          Set this node's left child.
 void Region.setRight(AATreeSet.Node<Comparable> r)
           
 void AATreeSet.Node.setRight(AATreeSet.Node<E> node)
          Set this node's right child.
 void AATreeSet.AbstractTreeNode.setRight(AATreeSet.Node<E> node)
          Set this node's right child.
 void Region.swapPayload(AATreeSet.Node<Comparable> other)
          Swap the payload objects between this node and the supplied node.
 void AATreeSet.Node.swapPayload(AATreeSet.Node<E> with)
          Swap the payload objects between this node and the supplied node.
 


ehcache

true