Package org.goplanit.utils.graph
Interface Edges
-
- All Superinterfaces:
Cloneable
,GraphEntities<Edge>
,Iterable<Edge>
,LongMapWrapper<Edge>
,MapWrapper<Long,Edge>
- All Known Implementing Classes:
EdgesImpl
public interface Edges extends GraphEntities<Edge>
Container and factory class for edges in a graph, also to be used to create and register edges of any (derived) type- Author:
- markr
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Edges
clone()
clone edgesEdgeFactory
getFactory()
Collect the edge 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
EdgeFactory getFactory()
Collect the edge factory to use for creating instances- Specified by:
getFactory
in interfaceGraphEntities<Edge>
- Returns:
- edgeFactory to create edges for this container
-
clone
Edges clone()
clone edges- Specified by:
clone
in interfaceGraphEntities<Edge>
- Specified by:
clone
in interfaceMapWrapper<Long,Edge>
- Returns:
- clone of entities
-
-