Package org.neo4j.cypherdsl.query

Examples of org.neo4j.cypherdsl.query.LabelValues


        this.nodeLabels = labels;
    }

    public Path labels( LabelValue... labels )
    {
        return new Path( node, relationship, nodePropertyValues, new LabelValues( asList( labels ) ) );
    }
View Full Code Here


        return new Path( node, relationship, nodePropertyValues, new LabelValues( asList( labels ) ) );
    }

    public Path labels( Iterable<LabelValue> labels )
    {
        return new Path( node, relationship, nodePropertyValues, new LabelValues( labels ) );
    }
View Full Code Here

TOP

Related Classes of org.neo4j.cypherdsl.query.LabelValues

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.