Fill a collection

 
import java.util.ArrayList;
import java.util.Collections;
import java.util.LinkedList;
import java.util.List;
import java.util.ListIterator;

class MainClass {
  public static void main(String[] args) {
    String[] coins = { "A", "B", "C", "D", "E" };

    List src = new LinkedList();
    for (int i = 0; i < coins.length; i++)
      src.add(coins[i]);

    List dst = new ArrayList();
    for (int i = 0; i < coins.length; i++)
      dst.add("");

    Collections.copy(dst, src);

    ListIterator liter = dst.listIterator();

    while (liter.hasNext())
      System.out.println(liter.next());

    Collections.fill(src, "no coins");

    liter = src.listIterator();

    while (liter.hasNext())
      System.out.println(liter.next());
  }
}
  
Home 
  Java Book 
    Runnable examples  

Collection Collection:
  1. Fill a collection
  2. Get the difference of two collections
  3. Get the min value within a collection
  4. Is collection empty, and all of its elements are empty
  5. Make a Collection Read-Only
  6. Make a collection an immutable collection
  7. Sort custom class and user defined Comparator