com.almworks.jira.structure.api.util.MapUtils Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of structure-api Show documentation
Show all versions of structure-api Show documentation
Public API for the Structure Plugin for JIRA
package com.almworks.jira.structure.api.util;
import java.util.Map;
public final class MapUtils {
public static boolean isSubMap(Map map, Map subMap) {
return map.entrySet().containsAll(subMap.entrySet());
}
private MapUtils() {}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy