从通过会话访存到的类别模式中获取类别

使用 RAMCategorySchema.getCategories()RAMCategorySchema.getCategory(String categoryName) 方法来访存类别模式中的所有类别。

                //Get all Categories in a Category Schema
                RAMCategory[] categories = (RAMCategory[])automobilesSchema.getCategories();
                
                //Get a Category by name
                RAMCategory modelCategory = (RAMCategory)automobilesSchema.getCategory("Model");

反馈