Package oracle.spatial.network.lod
Interface SpatialPath
-
- All Superinterfaces:
LogicalLightPath,LogicalPath
public interface SpatialPath extends LogicalPath
A SpatialPath is a LogicalPath with geometry information.- Since:
- 11gR1
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.Objectclone()Support cloneableCategorizedUserDatagetCategorizedUserData()Returns categorized user data.JGeometrygetGeometry()Returns the geometry information of the path.UserDatagetUserData(int category)Returns user data for the specified category.voidsetCategorizedUserData(CategorizedUserData userData)Sets categorized user data.voidsetUserData(int category, UserData userData)Sets user data for the specified category.-
Methods inherited from interface oracle.spatial.network.lod.LogicalLightPath
getCost, getCosts, getEndNodeId, getFirstLinkId, getLastLinkId, getNumberOfLinks, getNumberOfNodes, getStartNodeId, isReverse, reverse, setCosts
-
Methods inherited from interface oracle.spatial.network.lod.LogicalPath
append, append, append, append, getCostsAtNode, getCostsAtNodes, getCostsToNode, getCostsToNodes, getLinkIds, getNodeIds, indexOfLink, indexOfNode, isSimple, prepend, prepend, prepend, prepend
-
-
-
-
Method Detail
-
getGeometry
JGeometry getGeometry()
Returns the geometry information of the path.- 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-
-
clone
java.lang.Object clone() throws java.lang.CloneNotSupportedExceptionSupport cloneable- Returns:
- cloned object
- Throws:
java.lang.CloneNotSupportedException
-
-