Package oracle.spatial.network.lod
Class PartitionUpdate
- java.lang.Object
-
- oracle.spatial.network.lod.PartitionUpdate
-
public class PartitionUpdate extends java.lang.Object
A 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.Object
clone()
PartitionUpdate
combine(PartitionUpdate partitionUpdate)
void
deleteLink(long id)
void
deleteNode(long id)
long[]
getDeletedLinkIds()
long[]
getDeletedNodeIds()
LogicalLink
getLink(long linkId)
LogicalNode
getNode(long nodeId)
int
getNodePartitionId(long nodeId)
int
getPartitionId()
LogicalLink[]
getUpdatedLinks()
LogicalNode[]
getUpdatedNodes()
boolean
isLinkDeleted(long linkId)
boolean
isNodeDeleted(long nodeId)
void
updateLink(LogicalLink link)
void
updateNode(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:
clone
in classjava.lang.Object
-
-