セッションから取り出されたカテゴリー・スキーマからのカテゴリーの取得

以下を参照してください。

カテゴリー・スキーマ内のすべてのカテゴリーを取り出すには、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");

フィードバック