Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

import java.util.HashMap;

import java.util.Iterator;

import java.util.LinkedList;
import java.util.List;
import java.util.Map;

public class Main {
    public static double getSumValue(HashMap<String, Double> map) {
        Double count = 0.0D;
        List list = new LinkedList(map.entrySet());
        for (Iterator it = list.iterator(); it.hasNext();) {
            Map.Entry entry = (Map.Entry) it.next();
            count += map.get(entry.getKey());
        }
        return count;
    }
}