Interface IParameterBuilder<Self>

    • Method Detail

      • addParameter

        @Nonnull
        Self addParameter​(@Nonnull
                          String name,
                          @Nonnull
                          String value)
        Adds a parameter to this builder. If a content type is required, the default content type is used.
        Parameters:
        name - Name of the parameter to add.
        value - Value of the parameter to add.
        Returns:
        This builder for chaining method calls.
      • addParameter

        @Nonnull
        Self addParameter​(@Nonnull
                          HttpRequestParameter parameter)
        Adds a parameter to this builder. If a content type is required, the default content type is used.
        Parameters:
        parameter - Name of the parameter to add and its value.
        Returns:
        This builder for chaining method calls.
      • addParameters

        @Nonnull
        Self addParameters​(@Nonnull
                           Iterable<? extends HttpRequestParameter> parameters)
        Adds parameters to this builder. If a content type is required, the default content type is used.
        Parameters:
        parameters - Parameters to add.
        Returns:
        This builder for chaining method calls.