Get categories from a category schema

Use RAMCategorySchema.getCategories() and RAMCategorySchema.getCategory(String categoryName) methods to fetch all the categories from the within a category schema. If this schema was fetched through RAMAsset.getCategorySchemas() or RAMAsset.getCategorySchema(String schemaName) it will only contain the categories that have subcategories set on the asset.

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

Feedback