Package org.neo4j.cypherdsl.query

Examples of org.neo4j.cypherdsl.query.PropertyValues


     * @param propertyValues
     * @return
     */
    public Path values( PropertyValue... propertyValues )
    {
        return new Path( node, relationship, new PropertyValues( asList( propertyValues ) ), nodeLabels );
    }
View Full Code Here


     * @param propertyValues
     * @return
     */
    public Path values( Iterable<PropertyValue> propertyValues )
    {
        return new Path( node, relationship, new PropertyValues( propertyValues ), nodeLabels );
    }
View Full Code Here

     * @return
     */
    public PathRelationship values( PropertyValue... propertyValues )
    {
        return new PathRelationship( leftNode, direction, as, relationships,
                new PropertyValues( asList( propertyValues ) ), minHops, maxHops );
    }
View Full Code Here

     * @param propertyValues
     * @return
     */
    public PathRelationship values( Iterable<PropertyValue> propertyValues )
    {
        return new PathRelationship( leftNode, direction, as, relationships, new PropertyValues( propertyValues ),
                minHops, maxHops );
    }
View Full Code Here

TOP

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

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.