Package oracle.spatial.network.lod
Interface CategorizedUserData
-
- All Superinterfaces:
java.io.Serializable
- All Known Implementing Classes:
CategorizedUserDataImpl
public interface CategorizedUserData extends java.io.Serializable
This interface defines methods supported by a categorized user data object. A categorized user data contains a collection of user data categories. Each category of user data can be accessed by its category ID.- Since:
- 11gR2
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.Object
clone()
Supports cloneableint
getNumberOfCategories()
Returns the number of user data categories.UserData
getUserData(int categoryId)
Returns the user data for the specified category.void
setUserData(int categoryId, UserData userData)
Sets the user data for the specified category.
-
-
-
Method Detail
-
getUserData
UserData getUserData(int categoryId)
Returns the user data for the specified category.- Parameters:
categoryId
- category ID- Returns:
-
setUserData
void setUserData(int categoryId, UserData userData)
Sets the user data for the specified category.- Parameters:
categoryId
- category IDuserData
- user data
-
getNumberOfCategories
int getNumberOfCategories()
Returns the number of user data categories.- Returns:
-
clone
java.lang.Object clone() throws java.lang.CloneNotSupportedException
Supports cloneable- Returns:
- cloned object
- Throws:
java.lang.CloneNotSupportedException
-
-