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

io.crossbar.autobahn.wamp.utils.Shortcuts Maven / Gradle / Ivy

There is a newer version: 21.7.1
Show newest version
package io.crossbar.autobahn.wamp.utils;

import java.util.Map;

public class Shortcuts {
    public static  T getOrDefault(Map obj, Object key, T default_value) {
        if (obj.containsKey(key)) {
            return (T) obj.get(key);
        }
        return default_value;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy