public static interface DataValue.Builder extends SdkPojo, CopyableBuilder<DataValue.Builder,DataValue>
| Modifier and Type | Method and Description |
|---|---|
DataValue.Builder |
booleanValue(Boolean booleanValue)
A Boolean value.
|
DataValue.Builder |
doubleValue(Double doubleValue)
A double value.
|
DataValue.Builder |
expression(String expression)
An expression that produces the value.
|
DataValue.Builder |
integerValue(Integer integerValue)
An integer value.
|
DataValue.Builder |
listValue(Collection<DataValue> listValue)
A list of multiple values.
|
DataValue.Builder |
listValue(Consumer<DataValue.Builder>... listValue)
A list of multiple values.
|
DataValue.Builder |
listValue(DataValue... listValue)
A list of multiple values.
|
DataValue.Builder |
longValue(Long longValue)
A long value.
|
DataValue.Builder |
mapValue(Map<String,DataValue> mapValue)
An object that maps strings to multiple
DataValue objects. |
default DataValue.Builder |
relationshipValue(Consumer<RelationshipValue.Builder> relationshipValue)
A value that relates a component to another component.
|
DataValue.Builder |
relationshipValue(RelationshipValue relationshipValue)
A value that relates a component to another component.
|
DataValue.Builder |
stringValue(String stringValue)
A string value.
|
equalsBySdkFields, sdkFieldscopyapplyMutation, buildDataValue.Builder booleanValue(Boolean booleanValue)
A Boolean value.
booleanValue - A Boolean value.DataValue.Builder doubleValue(Double doubleValue)
A double value.
doubleValue - A double value.DataValue.Builder expression(String expression)
An expression that produces the value.
expression - An expression that produces the value.DataValue.Builder integerValue(Integer integerValue)
An integer value.
integerValue - An integer value.DataValue.Builder listValue(Collection<DataValue> listValue)
A list of multiple values.
listValue - A list of multiple values.DataValue.Builder listValue(DataValue... listValue)
A list of multiple values.
listValue - A list of multiple values.DataValue.Builder listValue(Consumer<DataValue.Builder>... listValue)
A list of multiple values.
This is a convenience method that creates an instance of theList.Builder avoiding the
need to create one manually via List#builder() .
When the Consumer completes, List.Builder#build() is called immediately and its
result is passed to #listValue(List) .listValue - a consumer that will call methods on List.Builder #listValue(List) DataValue.Builder longValue(Long longValue)
A long value.
longValue - A long value.DataValue.Builder mapValue(Map<String,DataValue> mapValue)
An object that maps strings to multiple DataValue objects.
mapValue - An object that maps strings to multiple DataValue objects.DataValue.Builder relationshipValue(RelationshipValue relationshipValue)
A value that relates a component to another component.
relationshipValue - A value that relates a component to another component.default DataValue.Builder relationshipValue(Consumer<RelationshipValue.Builder> relationshipValue)
A value that relates a component to another component.
This is a convenience method that creates an instance of theRelationshipValue.Builder avoiding the
need to create one manually via RelationshipValue.builder().
When the Consumer completes, SdkBuilder.build() is called immediately and its
result is passed to relationshipValue(RelationshipValue).relationshipValue - a consumer that will call methods on RelationshipValue.BuilderrelationshipValue(RelationshipValue)DataValue.Builder stringValue(String stringValue)
A string value.
stringValue - A string value.Copyright © 2022. All rights reserved.