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 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 ID
        userData - 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