카테고리 스키마에서 모든 카테고리를 페치하려면 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");