Examples of LabelValues


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

Examples of org.neo4j.cypherdsl.query.LabelValues

        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
Copyright © 2018 www.massapi.com. 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.