Package org.neo4j.cypherdsl.core
Interface StatementBuilder.ExposesYieldStar
-
- All Known Subinterfaces:
StatementBuilder.OngoingStandaloneCallWithArguments,StatementBuilder.OngoingStandaloneCallWithoutArguments
- Enclosing interface:
- StatementBuilder
public static interface StatementBuilder.ExposesYieldStarA trait for an ongoing standalone call to expose all of its results via an asterisk.- Since:
- , 2022.8.3
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description StatementBuilder.OngoingStandaloneCallWithReturnFieldsyield(Asterisk asterisk)Mostly a helper method to indicate the overload asExposesCall.ExposesYielduses vargs for all overloads, and that would not work nicely without arguments on this one here.default StatementBuilder.OngoingStandaloneCallWithReturnFieldsyieldStar()Convenience method to yield all items of this standalon call.
-
-
-
Method Detail
-
yield
StatementBuilder.OngoingStandaloneCallWithReturnFields yield(Asterisk asterisk)
Mostly a helper method to indicate the overload asExposesCall.ExposesYielduses vargs for all overloads, and that would not work nicely without arguments on this one here. Allows to use a * in this standalone call.- Parameters:
asterisk- The actual * ;)- Returns:
- The ongoing standalone call to be configured.
- Since:
- 2022.8.0
-
yieldStar
default StatementBuilder.OngoingStandaloneCallWithReturnFields yieldStar()
Convenience method to yield all items of this standalon call.- Returns:
- The ongoing standalone call to be configured.
- Since:
- 2022.8.0
-
-