org.vertexium.cypher.ast.model.CypherBoolean Maven / Gradle / Ivy
package org.vertexium.cypher.ast.model;
public class CypherBoolean extends CypherLiteral {
public CypherBoolean(Boolean value) {
super(value);
}
}
package org.vertexium.cypher.ast.model;
public class CypherBoolean extends CypherLiteral {
public CypherBoolean(Boolean value) {
super(value);
}
}