int size = 5;
// an array of Connections
Connection[] connections = new Connection[size];
// a LinkedList of Connections
LinkedList<Connection> list = new LinkedList<Connection>();
// an array of LinkedLists
LinkedList[] lists = new LinkedList[size];