-
- Type Parameters:
P- the path typeE- the path element type
public interface Path<P extends Path<P,E>,E>Generic path to something.A path consists of elements and optional continuation paths.
- Author:
- harald
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.List<E>getElements()Gets the elements describing the path.java.util.List<P>getPaths()Gets the sub paths starting at end of this path.
-