93949596979899
* @param propertyValues * @return */ public Path values( PropertyValue... propertyValues ) { return new Path( node, relationship, new PropertyValues( asList( propertyValues ) ), nodeLabels ); }
112113114115116117118
* @param propertyValues * @return */ public Path values( Iterable<PropertyValue> propertyValues ) { return new Path( node, relationship, new PropertyValues( propertyValues ), nodeLabels ); }
71727374757677
* @return */ public PathRelationship values( PropertyValue... propertyValues ) { return new PathRelationship( leftNode, direction, as, relationships, new PropertyValues( asList( propertyValues ) ), minHops, maxHops ); }
9091929394959697
* @param propertyValues * @return */ public PathRelationship values( Iterable<PropertyValue> propertyValues ) { return new PathRelationship( leftNode, direction, as, relationships, new PropertyValues( propertyValues ), minHops, maxHops ); }