apoc.util.MapUtil Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of apoc Show documentation
Show all versions of apoc Show documentation
A collection of useful Neo4j Procedures
package apoc.util;
import java.util.LinkedHashMap;
import java.util.Map;
/**
* @author mh
* @since 04.05.16
*/
public class MapUtil {
public static Map map(Object ... values) {
return Util.map(values);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy