Package oracle.spatial.network.lod
Interface SpatialNode
-
- All Superinterfaces:
LogicalNode
public interface SpatialNode extends LogicalNode
A SpatialNode is a LogicalNode 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 node.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.LogicalNode
getCost, getId, getMaxLinkLevel, isActive, setCost, setIsActive, setMaxLinkLevel, update
-
-
-
-
Method Detail
-
getGeometry
JGeometry getGeometry()
Returns the geometry information of the node.- 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
-
-