Package org.goplanit.utils.graph
Interface Vertices
-
- All Superinterfaces:
Cloneable
,GraphEntities<Vertex>
,Iterable<Vertex>
,LongMapWrapper<Vertex>
,MapWrapper<Long,Vertex>
- All Known Implementing Classes:
VerticesImpl
public interface Vertices extends GraphEntities<Vertex>
Container class for vertices and creating instances within this container via factory.- Author:
- markr
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Vertices
clone()
clone verticesVertexFactory
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
VertexFactory getFactory()
Collect the vertex factory to use for creating instances- Specified by:
getFactory
in interfaceGraphEntities<Vertex>
- Returns:
- vertexFactory to create edges for this container
-
clone
Vertices clone()
clone vertices- Specified by:
clone
in interfaceGraphEntities<Vertex>
- Specified by:
clone
in interfaceMapWrapper<Long,Vertex>
- Returns:
- clone of entities
-
-