Package oracle.spatial.network.lod
Interface SpatialNetLink
-
- All Superinterfaces:
LogicalLink
,LogicalNetLink
public interface SpatialNetLink extends LogicalNetLink
A SpatialNetLink is a LogicalNetLink with geometry information.- Since:
- 11gR1
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CategorizedUserData
getCategorizedUserData()
Returns categorized user data.JGeometry
getGeometry()
Returns the geometry information of the link.UserData
getUserData(int category)
Returns user data for the specified category.void
setCategorizedUserData(CategorizedUserData userData)
Sets categorized user data.void
setUserData(int category, UserData userData)
Sets user data for the specified category.-
Methods inherited from interface oracle.spatial.network.lod.LogicalLink
getCost, getEndNodeId, getId, getLevel, getStartNodeId, isActive, isBidirected, setCost, setEndNodeId, setIsActive, setIsBidirected, setStartNodeId, toLogicalNetLink, update
-
Methods inherited from interface oracle.spatial.network.lod.LogicalNetLink
clone, getEndNode, getPartitionId, getStartNode, isPartiallyLoaded, setEndNode, setPartitionId, setStartNode, toStandAloneLink
-
-
-
-
Method Detail
-
getGeometry
JGeometry getGeometry()
Returns the geometry information of the link.- Returns:
-
getCategorizedUserData
CategorizedUserData getCategorizedUserData()
Returns categorized user data.- Returns:
-
setCategorizedUserData
void setCategorizedUserData(CategorizedUserData userData)
Sets categorized user data.- Parameters:
userData
-
-
getUserData
UserData getUserData(int category)
Returns user data for the specified category.- Returns:
-
setUserData
void setUserData(int category, UserData userData)
Sets user data for the specified category.- Parameters:
userData
-
-
-