Interface DirectedVertices
-
- All Superinterfaces:
Cloneable
,GraphEntities<DirectedVertex>
,Iterable<DirectedVertex>
,LongMapWrapper<DirectedVertex>
,MapWrapper<Long,DirectedVertex>
- All Known Implementing Classes:
DirectedVerticesImpl
public interface DirectedVertices extends GraphEntities<DirectedVertex>
Container class for directed vertices and creating instances within this container via factory.- Author:
- markr
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description DirectedVertices
clone()
clone verticesdefault DirectedVertexFactory
getFactory()
Collect the vertex factory to use for creating instances-
Methods inherited from interface org.goplanit.utils.graph.GraphEntities
forEachMatchingIdIn, getByExternalId, getByXmlId
-
Methods inherited from interface java.lang.Iterable
forEach, iterator, spliterator
-
Methods inherited from interface org.goplanit.utils.wrapper.LongMapWrapper
containsKey, get, remove
-
Methods inherited from interface org.goplanit.utils.wrapper.MapWrapper
addAll, clear, contains, findFirst, forEachIn, get, getFirst, getKeyByValue, isEmpty, register, remove, size, toCollection, valuesAsNewSet
-
-
-
-
Method Detail
-
getFactory
default DirectedVertexFactory getFactory()
Collect the vertex factory to use for creating instances- Specified by:
getFactory
in interfaceGraphEntities<DirectedVertex>
- Returns:
- vertexFactory to create edges for this container
-
clone
DirectedVertices clone()
clone vertices- Specified by:
clone
in interfaceGraphEntities<DirectedVertex>
- Specified by:
clone
in interfaceMapWrapper<Long,DirectedVertex>
- Returns:
- clone of entities
-
-