Enums are sets of named constants. PowerDesigner models enums as classes with a stereotype of <<Enum>>.
{
public enum Color : colors
{
Red,
Blue,
Green,
Max = Blue
}
}
For information about creating and working with classes, see Classes (OOM).