Interface ExposesCall.ExposesYield<T>

    • Method Summary

      All Methods Instance Methods Abstract Methods Default Methods 
      Modifier and Type Method Description
      default T yield​(java.lang.String... yieldedItems)
      Adds the given items to the YIELD clause of the generated call.
      T yield​(AliasedExpression... aliasedResultFields)
      Adds the given items to the YIELD clause of the generated call and uses new aliases in the generated call.
      default T yield​(Named... yieldedItems)
      Adds the given items to the YIELD clause of the generated call.
      T yield​(SymbolicName... resultFields)
      Adds the given items to the YIELD clause of the generated call.
    • Method Detail

      • yield

        default T yield​(java.lang.String... yieldedItems)
        Adds the given items to the YIELD clause of the generated call.
        Parameters:
        yieldedItems - The list of items to be yielded.
        Returns:
        The ongoing standalone call to be configured.
      • yield

        default T yield​(Named... yieldedItems)
        Adds the given items to the YIELD clause of the generated call.
        Parameters:
        yieldedItems - The list of named items to be yielded.
        Returns:
        The ongoing standalone call to be configured.
        Since:
        2020.1.4
      • yield

        T yield​(SymbolicName... resultFields)
        Adds the given items to the YIELD clause of the generated call.
        Parameters:
        resultFields - The list of result fields to be returned.
        Returns:
        The ongoing standalone call to be configured.
      • yield

        T yield​(AliasedExpression... aliasedResultFields)
        Adds the given items to the YIELD clause of the generated call and uses new aliases in the generated call.
        Parameters:
        aliasedResultFields - The list of result fields to be returned with new aliases given.
        Returns:
        The ongoing standalone call to be configured.