org.vertexium.cypher.ast.model.CypherInteger Maven / Gradle / Ivy
package org.vertexium.cypher.ast.model;
public class CypherInteger extends CypherLiteral {
public CypherInteger(Long value) {
super(value);
}
public int getIntValue() {
return getValue().intValue();
}
}