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 procedes.
  • Method Details

    • withArgs

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