apoc.result.MapResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of apoc-common Show documentation
Show all versions of apoc-common Show documentation
Data types package for Neo4j Procedures
package apoc.result;
import java.util.Collections;
import java.util.Map;
/**
* @author mh
* @since 26.02.16
*/
public class MapResult {
public static final MapResult EMPTY = new MapResult(Collections.emptyMap());
public final Map value;
public static MapResult empty() {
return EMPTY;
}
public MapResult(Map value) {
this.value = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy