org.vertexium.cypher.ast.model.CypherLabelName Maven / Gradle / Ivy
package org.vertexium.cypher.ast.model;
public class CypherLabelName extends CypherLiteral {
public CypherLabelName(String value) {
super(value);
}
@Override
public String toString() {
return ":" + getValue();
}
}