When deciding to use a specific container (List/Set/Map), I like to consider the performance (big-Oh notation) metrics of operations such as insert, delete, get, etc. This is so I can select the best container for my needs.
The API docs always specify synchronized/unsynchronized, but not other performance metrics.
Is there a table of reference anywhere that I can consult?