0

Wondering what is the format to represent this state of a class inside a UML diagram

private LinkedList<String> list;

Thanks for your time

CowNorris
  • 47
  • 1
  • 10

1 Answers1

2

It's just a property with a multiplicity of 0..* and a type String. You generally don't design a linked list in UML, you use one to implement an association.

Jim L.
  • 6,177
  • 3
  • 21
  • 47