Collections Data Structure Java

import java.util.LinkedList;
public class MainClass {
  public static void main(String[] a) {
    LinkedList officers = new LinkedList();
    officers.add("B");
    officers.add("B");
    officers.add("H");
    officers.add("P");
    officers.add("M");
    officers.add(2, "T");
    for (String s : officers)
      System.out.println(s);
  }
}