Interface ExposesCall.ExposesWithArgs<T>

Type Parameters:
T - the type of the next step
All Known Subinterfaces:
StatementBuilder.OngoingInQueryCallWithoutArguments, StatementBuilder.OngoingStandaloneCallWithoutArguments
Enclosing interface:
ExposesCall<T>

public static interface ExposesCall.ExposesWithArgs<T>
Used to provide arguments to procedure calls.
  • Method Summary

    Modifier and Type
    Method
    Description
    withArgs(Expression... arguments)
    Adds the given arguments to the ongoing call and proceeds.
  • Method Details

    • withArgs

      @CheckReturnValue T withArgs(Expression... arguments)
      Adds the given arguments to the ongoing call and proceeds.
      Parameters:
      arguments - the list of new arguments, might be null or empty.
      Returns:
      an ongoing standalone call on which yielded arguments might be configured.