Package org.neo4j.cypherdsl.core
Interface ExposesCall<T>
-
- Type Parameters:
T- The type of the returned builder
- All Known Subinterfaces:
StatementBuilder.OngoingReading,StatementBuilder.OngoingReadingAndWith,StatementBuilder.OngoingReadingAndWithWithSkip,StatementBuilder.OngoingReadingAndWithWithWhereAndOrder,StatementBuilder.OngoingReadingWithoutWhere,StatementBuilder.OngoingReadingWithWhere,StatementBuilder.OrderableOngoingReadingAndWith,StatementBuilder.OrderableOngoingReadingAndWithWithoutWhere,StatementBuilder.OrderableOngoingReadingAndWithWithWhere
@API(status=EXPERIMENTAL, since="2020.0.1") public interface ExposesCall<T>Entrypoint for building procedure calls.- Since:
- 2020.0.1
- Author:
- Michael J. Simons
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interfaceExposesCall.AsFunctionInterface to allow creating an expression instead of a statement from an ongoing definition.static interfaceExposesCall.ExposesWithArgs<T>Used to provide arguments to procedure calls.static interfaceExposesCall.ExposesYield<T>Used to yield procedure result fields.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Tcall(java.lang.String... namespaceAndProcedure)Starts defining a procedure call of the procedure with the given qualified name.
-
-
-
Method Detail
-
call
T call(java.lang.String... namespaceAndProcedure)
Starts defining a procedure call of the procedure with the given qualified name.- Parameters:
namespaceAndProcedure- The procedure name of the procedure to call.- Returns:
- An ongoing definition of a call
-
-