Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

import java.util.Collection;
import java.util.Iterator;
import java.util.LinkedHashMap;

public class Main {
    public static void main(String[] args) {
        LinkedHashMap<String, String> lHashMap = new LinkedHashMap<String, String>();

        lHashMap.put("1", "One");
        lHashMap.put("2", "Two");
        lHashMap.put("3", "Three");

        Collection c = lHashMap.values();
        Iterator itr = c.iterator();

        while (itr.hasNext()) {
            System.out.println(itr.next());
        }
    }
}