Interface DirectedVertexFactory
-
- All Superinterfaces:
GraphEntityFactory<DirectedVertex>,ManagedIdEntityFactory<DirectedVertex>
- All Known Implementing Classes:
DirectedVertexFactoryImpl
public interface DirectedVertexFactory extends GraphEntityFactory<DirectedVertex>
Factory interface for creating vertex instances- Author:
- markr
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DirectedVertexcreateNew()Create a new directed vertex (without registering on this class)DirectedVertexregisterNew()Create and register new directed vertex-
Methods inherited from interface org.goplanit.utils.id.ManagedIdEntityFactory
createUniqueCopyOf, getIdGroupingToken, setIdGroupingToken
-
-
-
-
Method Detail
-
createNew
DirectedVertex createNew()
Create a new directed vertex (without registering on this class)- Returns:
- created vertex
-
registerNew
DirectedVertex registerNew()
Create and register new directed vertex- Returns:
- new node created
-
-