foreach(SupportedStereotype st in
(SupportedStereotype[])System.Enum.GetValues(typeof(SupportedStereotype)))
{
//do something
}
//Return an indication whether a constant with a specified value exists in a specified enumeration
bool System.Enum.IsDefined(typeof(SupportedStereotype),stereotype);