All Downloads are FREE. Search and download functionalities are using the official Maven repository.

de.samply.directory_sync.Util Maven / Gradle / Ivy

Go to download

Syncs Information between the BBMRI-ERIC Biobank Directory and the local bridgehead

There is a newer version: 0.2.0
Show newest version
package de.samply.directory_sync;

import java.util.HashMap;
import java.util.Map;

public class Util {

  public static  Map mapOf() {
    return new HashMap<>();
  }

  public static  Map mapOf(K key, V value) {
    HashMap map = new HashMap<>();
    map.put(key, value);
    return map;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy