Class Path

  • Direct Known Subclasses:
    AbsolutePath, RelativePath

    public abstract class Path
    extends java.lang.Object

    Represents a simple path (SPath) expression. A path is an ordered list of Steps.

    • Constructor Summary

      Constructors 
      Constructor Description
      Path()  
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      abstract java.util.List getSteps()
      Retrives an ordered list of Step objects representing this expression.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • Path

        public Path()
    • Method Detail

      • getSteps

        public abstract java.util.List getSteps()
        Retrives an ordered list of Step objects representing this expression. The result is safely modifiable by the caller and must support List.add(Object) and List.add(int, Object).