Interface ConjugateConnectoidEdges
-
- All Superinterfaces:
Cloneable,GraphEntities<ConjugateConnectoidEdge>,Iterable<ConjugateConnectoidEdge>,LongMapWrapper<ConjugateConnectoidEdge>,MapWrapper<Long,ConjugateConnectoidEdge>
- All Known Implementing Classes:
ConjugateConnectoidEdgesImpl
public interface ConjugateConnectoidEdges extends GraphEntities<ConjugateConnectoidEdge>
Container to register and manager conjugate connectoid edges.- Author:
- markr
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ConjugateConnectoidEdgesdeepClone()Deep clone implementationConjugateConnectoidEdgesdeepCloneWithMapping(BiConsumer<ConjugateConnectoidEdge,ConjugateConnectoidEdge> mapper)Deep clone implementation with mapping retained between original and copies createdConjugateConnectoidEdgeFactorygetFactory()Factory to create instance of graph entity (for this container class)ConjugateConnectoidEdgesshallowClone()shallow clone implementation-
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, containsValue, firstMatch, forEachIn, get, getFirst, getKeyByValue, isEmpty, register, remove, removeAll, removeIf, size, stream, streamSorted, toCollection, toMap, valuesAsNewSet
-
-
-
-
Method Detail
-
getFactory
ConjugateConnectoidEdgeFactory getFactory()
Factory to create instance of graph entity (for this container class)- Specified by:
getFactoryin interfaceGraphEntities<ConjugateConnectoidEdge>- Returns:
- entity factory
-
shallowClone
ConjugateConnectoidEdges shallowClone()
shallow clone implementation- Specified by:
shallowClonein interfaceGraphEntities<ConjugateConnectoidEdge>- Specified by:
shallowClonein interfaceMapWrapper<Long,ConjugateConnectoidEdge>- Returns:
- clone of entities
-
deepClone
ConjugateConnectoidEdges deepClone()
Deep clone implementation- Specified by:
deepClonein interfaceGraphEntities<ConjugateConnectoidEdge>- Returns:
- deep copy of entities
-
deepCloneWithMapping
ConjugateConnectoidEdges deepCloneWithMapping(BiConsumer<ConjugateConnectoidEdge,ConjugateConnectoidEdge> mapper)
Deep clone implementation with mapping retained between original and copies created- Specified by:
deepCloneWithMappingin interfaceGraphEntities<ConjugateConnectoidEdge>- Parameters:
mapper- that is applied to each deep copy entity mapping pair of origin and copy- Returns:
- pair with deep copy of entities and mapping from original entities to deep copies of these entities
-
-