Representing LinkedLists in UML diagrams?

1.4k Views Asked by At

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

private LinkedList<String> list;

Thanks for your time

1

There are 1 best solutions below

0
On BEST ANSWER

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.