Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
import java.util.*;

public class Main {
    public static <TKey, TValue> boolean MapEquals(Map<TKey, TValue> mapA, Map<TKey, TValue> mapB) {
        if (mapA == null) {
            return mapB == null;
        }
        if (mapB == null) {
            return false;
        }
        if (mapA.size() != mapB.size()) {
            return false;
        }
        for (Map.Entry<TKey, TValue> kvp : mapA.entrySet()) {
            TValue valueB = null;
            boolean hasKey;
            valueB = mapB.get(kvp.getKey());
            hasKey = (valueB == null) ? mapB.containsKey(kvp.getKey()) : true;
            if (hasKey) {
                TValue valueA = kvp.getValue();
                if (!(((valueA) == null) ? ((valueB) == null) : (valueA).equals(valueB))) {
                    return false;
                }
            } else {
                return false;
            }
        }
        return true;
    }
}