
apoc.help.HelpResult 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.help;
import java.util.List;
import java.util.Map;
/**
* @author mh
* @since 11.04.16
*/
public class HelpResult {
public String type;
public String name;
public String text;
public String signature;
public List roles;
public Boolean writes;
public HelpResult(String type, String name, String text, String signature, List roles, Boolean writes) {
this.type = type;
this.name = name;
this.text = text;
this.signature = signature;
this.roles = roles;
this.writes = writes;
}
public HelpResult(Map row) {
this((String)row.get("type"),(String)row.get("name"),(String)row.get("description"),(String)row.get("signature"),null,(Boolean)row.get("writes"));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy