Package org.neo4j.cypherdsl.core
Interface ListComprehension.OngoingDefinitionWithoutReturn
-
- All Known Subinterfaces:
ListComprehension.OngoingDefinitionWithList
- Enclosing class:
- ListComprehension
public static interface ListComprehension.OngoingDefinitionWithoutReturnProvides the final step of defining a list comprehension.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description ListComprehensionreturning()ListComprehensionreturning(Expression... listDefinition)default ListComprehensionreturning(Named... variables)
-
-
-
Method Detail
-
returning
default ListComprehension returning(Named... variables)
- Parameters:
variables- the elements to be returned from the list- Returns:
- The final definition of the list comprehension
- See Also:
returning(Expression...)
-
returning
ListComprehension returning(Expression... listDefinition)
- Parameters:
listDefinition- Defines the elements to be returned from the pattern- Returns:
- The final definition of the list comprehension
-
returning
ListComprehension returning()
- Returns:
- Returns the list comprehension as is, without a WHERE and returning each element of the original list
-
-