How do I represent this in a UML class diagram?
public class MyClass {
public enum MyEnum {
SOMETHING
}
}
How do I show the relationship between the class and the enum?
How do I represent this in a UML class diagram?
public class MyClass {
public enum MyEnum {
SOMETHING
}
}
How do I show the relationship between the class and the enum?