Interface ParameterValue.Builder

    • Method Detail

      • integer

        ParameterValue.Builder integer​(Integer integer)

        A control parameter that is an integer.

        Parameters:
        integer - A control parameter that is an integer.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • integerList

        ParameterValue.Builder integerList​(Collection<Integer> integerList)

        A control parameter that is a list of integers.

        Parameters:
        integerList - A control parameter that is a list of integers.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • integerList

        ParameterValue.Builder integerList​(Integer... integerList)

        A control parameter that is a list of integers.

        Parameters:
        integerList - A control parameter that is a list of integers.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • doubleValue

        ParameterValue.Builder doubleValue​(Double doubleValue)

        A control parameter that is a double.

        Parameters:
        doubleValue - A control parameter that is a double.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • string

        ParameterValue.Builder string​(String string)

        A control parameter that is a string.

        Parameters:
        string - A control parameter that is a string.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • stringList

        ParameterValue.Builder stringList​(Collection<String> stringList)

        A control parameter that is a list of strings.

        Parameters:
        stringList - A control parameter that is a list of strings.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • stringList

        ParameterValue.Builder stringList​(String... stringList)

        A control parameter that is a list of strings.

        Parameters:
        stringList - A control parameter that is a list of strings.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • booleanValue

        ParameterValue.Builder booleanValue​(Boolean booleanValue)

        A control parameter that is a boolean.

        Parameters:
        booleanValue - A control parameter that is a boolean.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • enumValue

        ParameterValue.Builder enumValue​(String enumValue)

        A control parameter that is an enum.

        Parameters:
        enumValue - A control parameter that is an enum.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • enumList

        ParameterValue.Builder enumList​(Collection<String> enumList)

        A control parameter that is a list of enums.

        Parameters:
        enumList - A control parameter that is a list of enums.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • enumList

        ParameterValue.Builder enumList​(String... enumList)

        A control parameter that is a list of enums.

        Parameters:
        enumList - A control parameter that is a list of enums.
        Returns:
        Returns a reference to this object so that method calls can be chained together.