All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.vertexium.cypher.ast.model.CypherStatement Maven / Gradle / Ivy

There is a newer version: 4.10.0
Show newest version
package org.vertexium.cypher.ast.model;

import java.util.stream.Stream;

public class CypherStatement extends CypherAstBase {
    private final CypherAstBase query;

    public CypherStatement(CypherAstBase query) {
        this.query = query;
    }

    public CypherAstBase getQuery() {
        return query;
    }

    @Override
    public Stream getChildren() {
        return Stream.of(query);
    }

    @Override
    public String toString() {
        return getQuery().toString();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy