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

org.vertexium.cypher.ast.model.CypherSetClause 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 CypherSetClause extends CypherClause {
    private final List setItems;

    public CypherSetClause(List setItems) {
        this.setItems = setItems;
    }

    public List getSetItems() {
        return setItems;
    }

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy