'Forest', self::CROPLAND => 'Cropland', self::GRASSLAND => 'Grassland', self::WETLAND => 'Wetland', self::SETTLEMENT => 'Settlement', self::OTHERLAND => 'Otherland', }; } public static function getSubcategories(LandCategory $category): array { return match ($category) { self::FOREST => ['hp', 'hs', 'hmp', 'hrp', 'ht', 'hms', 'hrs'], self::CROPLAND => ['pk', 'pt', 'pc', 'sw', 'tr'], self::GRASSLAND => ['b', 's', 'br'], self::WETLAND => ['a', 'rw'], self::SETTLEMENT => ['pm'], self::OTHERLAND => ['t', 'aw', 'tm', 'bdr', 'tb'], }; } }