Uses of Class
net.walend.digraph.path.InvalidSpliceException

Packages that use InvalidSpliceException
net.walend.digraph.path This package contains a kit for working with paths on directed graphs. 
 

Uses of InvalidSpliceException in net.walend.digraph.path
 

Methods in net.walend.digraph.path that throw InvalidSpliceException
private  void AbstractDelegateDigraphOfCEPaths.DigraphCEPath.checkIndices(int startNodeIndex, int endNodeIndex)
           
 CEPath AbstractDelegateDigraphOfCEPaths.DigraphCEPath.getSubpath(int startNodeIndex, int endNodeIndex)
          Returns a new path, between startNodeIndex and endNodeIndex, inclusive.
private  CEPath AbstractDelegateDigraphOfCEPaths.DigraphCEPath.getSubpath(java.lang.Object startNode, java.lang.Object endNode)
           
 CEPath AbstractDelegateDigraphOfCEPaths.DigraphCEPath.getSubpathFirst(java.lang.Object startNode, java.lang.Object endNode)
          Returns a new path, between the first occurence of startNode and the first occurence of endNode, inclusive.
 CEPath AbstractDelegateDigraphOfCEPaths.DigraphCEPath.getSubpathLast(java.lang.Object startNode, java.lang.Object endNode)
          Returns a new path, between the last occurence of startNode and the last occurence of endNode, inclusive.
 CEPath AbstractDelegateDigraphOfCEPaths.DigraphCEPath.getSubpathFirstToLast(java.lang.Object startNode, java.lang.Object endNode)
          Returns a new path, between the first occurence of startNode and the last occurence of endNode, inclusive.
 CEPath AbstractDelegateDigraphOfCEPaths.DigraphCEPath.getSubpathLastToFirst(java.lang.Object startNode, java.lang.Object endNode)
          Returns a new path, between the last occurence of startNode and the first occurence of endNode, inclusive.
private  void AbstractDelegateDigraphOfGEPaths.DigraphGEPath.checkIndices(int startNodeIndex, int endNodeIndex)
           
 GEPath AbstractDelegateDigraphOfGEPaths.DigraphGEPath.getSubpath(int startNodeIndex, int endNodeIndex)
          Returns a new path, between startNodeIndex and endNodeIndex, inclusive.
private  GEPath AbstractDelegateDigraphOfGEPaths.DigraphGEPath.getSubpath(java.lang.Object startNode, java.lang.Object endNode)
           
 GEPath AbstractDelegateDigraphOfGEPaths.DigraphGEPath.getSubpathFirst(java.lang.Object startNode, java.lang.Object endNode)
          Returns a new path, between the first occurence of startNode and the first occurence of endNode, inclusive.
 GEPath AbstractDelegateDigraphOfGEPaths.DigraphGEPath.getSubpathLast(java.lang.Object startNode, java.lang.Object endNode)
          Returns a new path, between the last occurence of startNode and the last occurence of endNode, inclusive.
 GEPath AbstractDelegateDigraphOfGEPaths.DigraphGEPath.getSubpathFirstToLast(java.lang.Object startNode, java.lang.Object endNode)
          Returns a new path, between the first occurence of startNode and the last occurence of endNode, inclusive.
 GEPath AbstractDelegateDigraphOfGEPaths.DigraphGEPath.getSubpathLastToFirst(java.lang.Object startNode, java.lang.Object endNode)
          Returns a new path, between the last occurence of startNode and the first occurence of endNode, inclusive.
private  void AbstractListCEPath.checkIndices(int startNodeIndex, int endNodeIndex)
           
 CEPath AbstractListCEPath.getSubpath(int startNodeIndex, int endNodeIndex)
          Returns a new path, between startNodeIndex and endNodeIndex, inclusive.
private  void AbstractListCEPath.checkSubpathIndices(int startNodeIndex, int endNodeIndex, java.lang.Object startNode, java.lang.Object endNode)
           
 CEPath AbstractListCEPath.getSubpathFirst(java.lang.Object startNode, java.lang.Object endNode)
          Returns a new path, between the first occurence of startNode and the first occurence of endNode, inclusive.
 CEPath AbstractListCEPath.getSubpathLast(java.lang.Object startNode, java.lang.Object endNode)
          Returns a new path, between the last occurence of startNode and the last occurence of endNode, inclusive.
 CEPath AbstractListCEPath.getSubpathFirstToLast(java.lang.Object startNode, java.lang.Object endNode)
          Returns a new path, between the first occurence of startNode and the last occurence of endNode, inclusive.
 CEPath AbstractListCEPath.getSubpathLastToFirst(java.lang.Object startNode, java.lang.Object endNode)
          Returns a new path, between the last occurence of startNode and the first occurence of endNode, inclusive.
protected  void AbstractListCEPath.graftToTail(CEPath path)
          Adds a path to the end of this path.
protected  void AbstractListCEPath.graftToHead(CEPath path)
          Adds a path to the beginning of this path.
protected  CEPath AbstractListCEPath.splice(CEPath path, int startNodeIndex, int endNodeIndex)
          Splices in path between the startNodeIndex and endNodeIndex.
protected  CEPath AbstractListCEPath.spliceFirst(CEPath path)
          Splices in path between the first occurence of path's head and the first occurence of path's tail.
protected  CEPath AbstractListCEPath.spliceLast(CEPath path)
          Splices in path between the last occurence of path's head and the last occurence of path's tail.
protected  CEPath AbstractListCEPath.spliceFirstToLast(CEPath path)
          Splices in path between the first occurence of path's head and the last occurence of path's tail.
protected  CEPath AbstractListCEPath.spliceLastToFirst(CEPath path)
          Splices in path between the last occurence of path's head and the first occurence of path's tail.
 void MutableCEPath.graftToHead(CEPath path)
          Adds a path to the beginning of this path.
 void MutableCEPath.graftToTail(CEPath path)
          Adds a path to the end of this path.
 CEPath MutableCEPath.splice(CEPath path, int startNodeIndex, int endNodeIndex)
          Splices in path between the startNodeIndex and endNodeIndex.
 CEPath MutableCEPath.spliceFirst(CEPath path)
          Splices in path between the first occurence of path's head and the first occurence of path's tail.
 CEPath MutableCEPath.spliceLast(CEPath path)
          Splices in path between the last occurence of path's head and the last occurence of path's tail.
 CEPath MutableCEPath.spliceFirstToLast(CEPath path)
          Splices in path between the first occurence of path's head and the last occurence of path's tail.
 CEPath MutableCEPath.spliceLastToFirst(CEPath path)
          Splices in path between the last occurence of path's head and the first occurence of path's tail.
 GEPath GEPath.getSubpath(int startNodeIndex, int endNodeIndex)
          Returns a new path, between startNodeIndex and endNodeIndex, inclusive.
 GEPath GEPath.getSubpathFirst(java.lang.Object startNode, java.lang.Object endNode)
          Returns a new path, between the first occurence of startNode and the first occurence of endNode, inclusive.
 GEPath GEPath.getSubpathLast(java.lang.Object startNode, java.lang.Object endNode)
          Returns a new path, between the last occurence of startNode and the last occurence of endNode, inclusive.
 GEPath GEPath.getSubpathFirstToLast(java.lang.Object startNode, java.lang.Object endNode)
          Returns a new path, between the first occurence of startNode and the last occurence of endNode, inclusive.
 GEPath GEPath.getSubpathLastToFirst(java.lang.Object startNode, java.lang.Object endNode)
          Returns a new path, between the last occurence of startNode and the first occurence of endNode, inclusive.
 void MutableListGEPath.graftToTail(GEPath path)
          Adds a path to the end of this path.
 void MutableListGEPath.graftToHead(GEPath path)
          Adds a path to the beginning of this path.
 GEPath MutableListGEPath.splice(GEPath path, int startNodeIndex, int endNodeIndex)
          Splices in path between the startNodeIndex and endNodeIndex.
 GEPath MutableListGEPath.spliceFirst(GEPath path)
          Splices in path between the first occurence of path's head and the first occurence of path's tail.
 GEPath MutableListGEPath.spliceLast(GEPath path)
          Splices in path between the last occurence of path's head and the last occurence of path's tail.
 GEPath MutableListGEPath.spliceFirstToLast(GEPath path)
          Splices in path between the first occurence of path's head and the last occurence of path's tail.
 GEPath MutableListGEPath.spliceLastToFirst(GEPath path)
          Splices in path between the last occurence of path's head and the first occurence of path's tail.
private  void AbstractListGEPath.checkIndices(int startNodeIndex, int endNodeIndex)
           
 GEPath AbstractListGEPath.getSubpath(int startNodeIndex, int endNodeIndex)
          Returns a new path, between startNodeIndex and endNodeIndex, inclusive.
private  void AbstractListGEPath.checkSubpathIndices(int startNodeIndex, int endNodeIndex, java.lang.Object startNode, java.lang.Object endNode)
           
 GEPath AbstractListGEPath.getSubpathFirst(java.lang.Object startNode, java.lang.Object endNode)
          Returns a new path, between the first occurence of startNode and the first occurence of endNode, inclusive.
 GEPath AbstractListGEPath.getSubpathLast(java.lang.Object startNode, java.lang.Object endNode)
          Returns a new path, between the last occurence of startNode and the last occurence of endNode, inclusive.
 GEPath AbstractListGEPath.getSubpathFirstToLast(java.lang.Object startNode, java.lang.Object endNode)
          Returns a new path, between the first occurence of startNode and the last occurence of endNode, inclusive.
 GEPath AbstractListGEPath.getSubpathLastToFirst(java.lang.Object startNode, java.lang.Object endNode)
          Returns a new path, between the last occurence of startNode and the first occurence of endNode, inclusive.
protected  void AbstractListGEPath.graftToTail(GEPath path)
          Adds a path to the end of this path.
protected  void AbstractListGEPath.graftToHead(GEPath path)
          Adds a path to the beginning of this path.
protected  GEPath AbstractListGEPath.splice(GEPath path, int startNodeIndex, int endNodeIndex)
          Splices in path between the startNodeIndex and endNodeIndex.
protected  GEPath AbstractListGEPath.spliceFirst(GEPath path)
          Splices in path between the first occurence of path's head and the first occurence of path's tail.
protected  GEPath AbstractListGEPath.spliceLast(GEPath path)
          Splices in path between the last occurence of path's head and the last occurence of path's tail.
protected  GEPath AbstractListGEPath.spliceFirstToLast(GEPath path)
          Splices in path between the first occurence of path's head and the last occurence of path's tail.
protected  GEPath AbstractListGEPath.spliceLastToFirst(GEPath path)
          Splices in path between the last occurence of path's head and the first occurence of path's tail.
 void MutableGEPath.graftToHead(GEPath path)
          Adds a path to the beginning of this path.
 void MutableGEPath.graftToTail(GEPath path)
          Adds a path to the end of this path.
 GEPath MutableGEPath.splice(GEPath path, int startNodeIndex, int endNodeIndex)
          Splices in path between the startNodeIndex and endNodeIndex.
 GEPath MutableGEPath.spliceFirst(GEPath path)
          Splices in path between the first occurence of path's head and the first occurence of path's tail.
 GEPath MutableGEPath.spliceLast(GEPath path)
          Splices in path between the last occurence of path's head and the last occurence of path's tail.
 GEPath MutableGEPath.spliceFirstToLast(GEPath path)
          Splices in path between the first occurence of path's head and the last occurence of path's tail.
 GEPath MutableGEPath.spliceLastToFirst(GEPath path)
          Splices in path between the last occurence of path's head and the first occurence of path's tail.
 UEPath UEPath.getSubpath(int startNodeIndex, int endNodeIndex)
          Returns a new path, between startNodeIndex and endNodeIndex, inclusive.
 UEPath UEPath.getSubpathFirst(java.lang.Object startNode, java.lang.Object endNode)
          Returns a new path, between the first occurence of startNode and the first occurence of endNode, inclusive.
 UEPath UEPath.getSubpathLast(java.lang.Object startNode, java.lang.Object endNode)
          Returns a new path, between the last occurence of startNode and the last occurence of endNode, inclusive.
 UEPath UEPath.getSubpathFirstToLast(java.lang.Object startNode, java.lang.Object endNode)
          Returns a new path, between the first occurence of startNode and the last occurence of endNode, inclusive.
 UEPath UEPath.getSubpathLastToFirst(java.lang.Object startNode, java.lang.Object endNode)
          Returns a new path, between the last occurence of startNode and the first occurence of endNode, inclusive.
 CEPath CEPath.getSubpath(int startNodeIndex, int endNodeIndex)
          Returns a new path, between startNodeIndex and endNodeIndex, inclusive.
 CEPath CEPath.getSubpathFirst(java.lang.Object startNode, java.lang.Object endNode)
          Returns a new path, between the first occurence of startNode and the first occurence of endNode, inclusive.
 CEPath CEPath.getSubpathLast(java.lang.Object startNode, java.lang.Object endNode)
          Returns a new path, between the last occurence of startNode and the last occurence of endNode, inclusive.
 CEPath CEPath.getSubpathFirstToLast(java.lang.Object startNode, java.lang.Object endNode)
          Returns a new path, between the first occurence of startNode and the last occurence of endNode, inclusive.
 CEPath CEPath.getSubpathLastToFirst(java.lang.Object startNode, java.lang.Object endNode)
          Returns a new path, between the last occurence of startNode and the first occurence of endNode, inclusive.
 void MutableListUEPath.graftToTail(UEPath path)
          Adds a path to the end of this path.
 void MutableListUEPath.graftToHead(UEPath path)
          Adds a path to the beginning of this path.
 UEPath MutableListUEPath.splice(UEPath path, int startNodeIndex, int endNodeIndex)
          Splices in path between the startNodeIndex and endNodeIndex.
 UEPath MutableListUEPath.spliceFirst(UEPath path)
          Splices in path between the first occurence of path's head and the first occurence of path's tail.
 UEPath MutableListUEPath.spliceLast(UEPath path)
          Splices in path between the last occurence of path's head and the last occurence of path's tail.
 UEPath MutableListUEPath.spliceFirstToLast(UEPath path)
          Splices in path between the first occurence of path's head and the last occurence of path's tail.
 UEPath MutableListUEPath.spliceLastToFirst(UEPath path)
          Splices in path between the last occurence of path's head and the first occurence of path's tail.
 void MutableListCEPath.graftToTail(CEPath path)
          Adds a path to the end of this path.
 void MutableListCEPath.graftToHead(CEPath path)
          Adds a path to the beginning of this path.
 CEPath MutableListCEPath.splice(CEPath path, int startNodeIndex, int endNodeIndex)
          Splices in path between the startNodeIndex and endNodeIndex.
 CEPath MutableListCEPath.spliceFirst(CEPath path)
          Splices in path between the first occurence of path's head and the first occurence of path's tail.
 CEPath MutableListCEPath.spliceLast(CEPath path)
          Splices in path between the last occurence of path's head and the last occurence of path's tail.
 CEPath MutableListCEPath.spliceFirstToLast(CEPath path)
          Splices in path between the first occurence of path's head and the last occurence of path's tail.
 CEPath MutableListCEPath.spliceLastToFirst(CEPath path)
          Splices in path between the last occurence of path's head and the first occurence of path's tail.
private  void AbstractListUEPath.checkIndices(int startNodeIndex, int endNodeIndex)
           
 UEPath AbstractListUEPath.getSubpath(int startNodeIndex, int endNodeIndex)
          Returns a new path, between startNodeIndex and endNodeIndex, inclusive.
private  void AbstractListUEPath.checkSubpathIndices(int startNodeIndex, int endNodeIndex, java.lang.Object startNode, java.lang.Object endNode)
           
 UEPath AbstractListUEPath.getSubpathFirst(java.lang.Object startNode, java.lang.Object endNode)
          Returns a new path, between the first occurence of startNode and the first occurence of endNode, inclusive.
 UEPath AbstractListUEPath.getSubpathLast(java.lang.Object startNode, java.lang.Object endNode)
          Returns a new path, between the last occurence of startNode and the last occurence of endNode, inclusive.
 UEPath AbstractListUEPath.getSubpathFirstToLast(java.lang.Object startNode, java.lang.Object endNode)
          Returns a new path, between the first occurence of startNode and the last occurence of endNode, inclusive.
 UEPath AbstractListUEPath.getSubpathLastToFirst(java.lang.Object startNode, java.lang.Object endNode)
          Returns a new path, between the last occurence of startNode and the first occurence of endNode, inclusive.
protected  void AbstractListUEPath.graftToTail(UEPath path)
          Adds a path to the end of this path.
protected  void AbstractListUEPath.graftToHead(UEPath path)
          Adds a path to the beginning of this path.
protected  UEPath AbstractListUEPath.splice(UEPath path, int startNodeIndex, int endNodeIndex)
          Splices in path between the startNodeIndex and endNodeIndex.
protected  UEPath AbstractListUEPath.spliceFirst(UEPath path)
          Splices in path between the first occurence of path's head and the first occurence of path's tail.
protected  UEPath AbstractListUEPath.spliceLast(UEPath path)
          Splices in path between the last occurence of path's head and the last occurence of path's tail.
protected  UEPath AbstractListUEPath.spliceFirstToLast(UEPath path)
          Splices in path between the first occurence of path's head and the last occurence of path's tail.
protected  UEPath AbstractListUEPath.spliceLastToFirst(UEPath path)
          Splices in path between the last occurence of path's head and the first occurence of path's tail.
 void MutableUEPath.graftToHead(UEPath path)
          Adds a path to the beginning of this path.
 void MutableUEPath.graftToTail(UEPath path)
          Adds a path to the end of this path.
 UEPath MutableUEPath.splice(UEPath path, int startNodeIndex, int endNodeIndex)
          Splices in path between the startNodeIndex and endNodeIndex.
 UEPath MutableUEPath.spliceFirst(UEPath path)
          Splices in path between the first occurence of path's head and the first occurence of path's tail.
 UEPath MutableUEPath.spliceLast(UEPath path)
          Splices in path between the last occurence of path's head and the last occurence of path's tail.
 UEPath MutableUEPath.spliceFirstToLast(UEPath path)
          Splices in path between the first occurence of path's head and the last occurence of path's tail.
 UEPath MutableUEPath.spliceLastToFirst(UEPath path)
          Splices in path between the last occurence of path's head and the first occurence of path's tail.
 



Copyright (c) 2001, 2002, David Walend