Interface DataValue.Builder

    • Method Detail

      • booleanValue

        DataValue.Builder booleanValue​(Boolean booleanValue)

        A Boolean value.

        Parameters:
        booleanValue - A Boolean value.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • doubleValue

        DataValue.Builder doubleValue​(Double doubleValue)

        A double value.

        Parameters:
        doubleValue - A double value.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • integerValue

        DataValue.Builder integerValue​(Integer integerValue)

        An integer value.

        Parameters:
        integerValue - An integer value.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • longValue

        DataValue.Builder longValue​(Long longValue)

        A long value.

        Parameters:
        longValue - A long value.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • stringValue

        DataValue.Builder stringValue​(String stringValue)

        A string value.

        Parameters:
        stringValue - A string value.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • listValue

        DataValue.Builder listValue​(Collection<DataValue> listValue)

        A list of multiple values.

        Parameters:
        listValue - A list of multiple values.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • listValue

        DataValue.Builder listValue​(DataValue... listValue)

        A list of multiple values.

        Parameters:
        listValue - A list of multiple values.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • mapValue

        DataValue.Builder mapValue​(Map<String,​DataValue> mapValue)

        An object that maps strings to multiple DataValue objects.

        Parameters:
        mapValue - An object that maps strings to multiple DataValue objects.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • relationshipValue

        DataValue.Builder relationshipValue​(RelationshipValue relationshipValue)

        A value that relates a component to another component.

        Parameters:
        relationshipValue - A value that relates a component to another component.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • expression

        DataValue.Builder expression​(String expression)

        An expression that produces the value.

        Parameters:
        expression - An expression that produces the value.
        Returns:
        Returns a reference to this object so that method calls can be chained together.