Package org.goplanit.utils.path
Interface ContainerisedDirectedPathFactory
-
- All Superinterfaces:
DirectedPathFactory
,ManagedIdEntityFactory<DirectedPath>
- All Known Implementing Classes:
ContainerisedDirectedPathFactoryImpl
public interface ContainerisedDirectedPathFactory extends ManagedIdEntityFactory<DirectedPath>, DirectedPathFactory
Factory interface for directed paths- Author:
- markr
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DirectedPath
registerNew()
Create new pathDirectedPath
registerNew(Deque<? extends EdgeSegment> edgeSegments)
Create new path based on the provided edge segments-
Methods inherited from interface org.goplanit.utils.path.DirectedPathFactory
createNew, createNew
-
Methods inherited from interface org.goplanit.utils.id.ManagedIdEntityFactory
createUniqueCopyOf, getIdGroupingToken, setIdGroupingToken
-
-
-
-
Method Detail
-
registerNew
DirectedPath registerNew()
Create new path- Returns:
- the created path
-
registerNew
DirectedPath registerNew(Deque<? extends EdgeSegment> edgeSegments)
Create new path based on the provided edge segments- Parameters:
edgeSegments
- of the path- Returns:
- the created path
-
-