Package oracle.spatial.network.lod
Class PartitionUpdate
- java.lang.Object
-
- oracle.spatial.network.lod.PartitionUpdate
-
public class PartitionUpdate extends java.lang.ObjectA PartitionUpdate object contains partition update information.- Since:
- 11gR1
-
-
Constructor Summary
Constructors Constructor Description PartitionUpdate(int partitionId)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Objectclone()PartitionUpdatecombine(PartitionUpdate partitionUpdate)voiddeleteLink(long id)voiddeleteNode(long id)long[]getDeletedLinkIds()long[]getDeletedNodeIds()LogicalLinkgetLink(long linkId)LogicalNodegetNode(long nodeId)intgetNodePartitionId(long nodeId)intgetPartitionId()LogicalLink[]getUpdatedLinks()LogicalNode[]getUpdatedNodes()booleanisLinkDeleted(long linkId)booleanisNodeDeleted(long nodeId)voidupdateLink(LogicalLink link)voidupdateNode(LogicalNode node, int partitionId)
-
-
-
Method Detail
-
getPartitionId
public int getPartitionId()
-
updateNode
public void updateNode(LogicalNode node, int partitionId)
-
deleteNode
public void deleteNode(long id)
-
updateLink
public void updateLink(LogicalLink link)
-
deleteLink
public void deleteLink(long id)
-
getUpdatedNodes
public LogicalNode[] getUpdatedNodes()
-
getDeletedNodeIds
public long[] getDeletedNodeIds()
-
getUpdatedLinks
public LogicalLink[] getUpdatedLinks()
-
getDeletedLinkIds
public long[] getDeletedLinkIds()
-
getNodePartitionId
public int getNodePartitionId(long nodeId)
-
getNode
public LogicalNode getNode(long nodeId)
-
getLink
public LogicalLink getLink(long linkId)
-
isLinkDeleted
public boolean isLinkDeleted(long linkId)
-
isNodeDeleted
public boolean isNodeDeleted(long nodeId)
-
combine
public PartitionUpdate combine(PartitionUpdate partitionUpdate)
-
clone
public java.lang.Object clone()
- Overrides:
clonein classjava.lang.Object
-
-