org.vertexium.cypher.functions.string.RightFunction Maven / Gradle / Ivy
package org.vertexium.cypher.functions.string;
import org.vertexium.cypher.exceptions.VertexiumCypherNotImplemented;
public class RightFunction extends CypherUnaryStringFunction {
@Override
protected Object invokeOnString(String str) {
throw new VertexiumCypherNotImplemented("" + this.getClass().getName());
}
}