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

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

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

import java.util.List;
import java.util.stream.Collectors;
import java.util.stream.Stream;

public class CypherRemoveClause extends CypherClause {
    private final List removeItems;

    public CypherRemoveClause(List removeItems) {
        this.removeItems = removeItems;
    }

    public List getRemoveItems() {
        return removeItems;
    }

    @Override
    public String toString() {
        return String.format(
            "REMOVE %s",
            getRemoveItems().stream().map(Object::toString).collect(Collectors.joining(", "))
        );
    }

    @Override
    public Stream getChildren() {
        return removeItems.stream();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy