Interface ConjugateConnectoidNodes
-
- All Superinterfaces:
Cloneable,GraphEntities<ConjugateConnectoidNode>,Iterable<ConjugateConnectoidNode>,LongMapWrapper<ConjugateConnectoidNode>,ManagedGraphEntities<ConjugateConnectoidNode>,ManagedIdEntities<ConjugateConnectoidNode>,MapWrapper<Long,ConjugateConnectoidNode>
- All Known Implementing Classes:
ConjugateConnectoidNodesImpl
public interface ConjugateConnectoidNodes extends ManagedGraphEntities<ConjugateConnectoidNode>
Container class for conjugate connectoid nodes container and access to factory to create and register them on this instance- Author:
- markr
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ConjugateConnectoidNodesdeepClone()Force clone implementationConjugateConnectoidNodesdeepCloneWithMapping(BiConsumer<ConjugateConnectoidNode,ConjugateConnectoidNode> mapper)Deep clone implementation with mapping retained between original and copies createdConjugateConnectoidNodeFactorygetFactory()Factory to create instance of graph entity (for this container class)ConjugateConnectoidNodesshallowClone()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
get, remove
-
Methods inherited from interface org.goplanit.utils.id.ManagedIdEntities
containsKey, getManagedIdClass, groupBy, recreateIds, recreateIds, reset, streamSortedBy
-
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
ConjugateConnectoidNodeFactory getFactory()
Factory to create instance of graph entity (for this container class)- Specified by:
getFactoryin interfaceGraphEntities<ConjugateConnectoidNode>- Specified by:
getFactoryin interfaceManagedIdEntities<ConjugateConnectoidNode>- Returns:
- entity factory
-
shallowClone
ConjugateConnectoidNodes shallowClone()
shallow clone implementation- Specified by:
shallowClonein interfaceGraphEntities<ConjugateConnectoidNode>- Specified by:
shallowClonein interfaceManagedGraphEntities<ConjugateConnectoidNode>- Specified by:
shallowClonein interfaceManagedIdEntities<ConjugateConnectoidNode>- Specified by:
shallowClonein interfaceMapWrapper<Long,ConjugateConnectoidNode>- Returns:
- clone of entities
-
deepClone
ConjugateConnectoidNodes deepClone()
Force clone implementation- Specified by:
deepClonein interfaceGraphEntities<ConjugateConnectoidNode>- Specified by:
deepClonein interfaceManagedGraphEntities<ConjugateConnectoidNode>- Specified by:
deepClonein interfaceManagedIdEntities<ConjugateConnectoidNode>- Returns:
- clone of entities
-
deepCloneWithMapping
ConjugateConnectoidNodes deepCloneWithMapping(BiConsumer<ConjugateConnectoidNode,ConjugateConnectoidNode> mapper)
Deep clone implementation with mapping retained between original and copies created- Specified by:
deepCloneWithMappingin interfaceGraphEntities<ConjugateConnectoidNode>- Specified by:
deepCloneWithMappingin interfaceManagedGraphEntities<ConjugateConnectoidNode>- Specified by:
deepCloneWithMappingin interfaceManagedIdEntities<ConjugateConnectoidNode>- 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
-
-