public static interface Datum.Builder extends SdkPojo, CopyableBuilder<Datum.Builder,Datum>
| Modifier and Type | Method and Description |
|---|---|
Datum.Builder |
arrayValue(Collection<Datum> arrayValue)
Indicates if the data point is an array.
|
Datum.Builder |
arrayValue(Consumer<Datum.Builder>... arrayValue)
Indicates if the data point is an array.
|
Datum.Builder |
arrayValue(Datum... arrayValue)
Indicates if the data point is an array.
|
Datum.Builder |
nullValue(Boolean nullValue)
Indicates if the data point is null.
|
default Datum.Builder |
rowValue(Consumer<Row.Builder> rowValue)
Indicates if the data point is a row.
|
Datum.Builder |
rowValue(Row rowValue)
Indicates if the data point is a row.
|
Datum.Builder |
scalarValue(String scalarValue)
Indicates if the data point is a scalar value such as integer, string, double, or Boolean.
|
Datum.Builder |
timeSeriesValue(Collection<TimeSeriesDataPoint> timeSeriesValue)
Indicates if the data point is a timeseries data type.
|
Datum.Builder |
timeSeriesValue(Consumer<TimeSeriesDataPoint.Builder>... timeSeriesValue)
Indicates if the data point is a timeseries data type.
|
Datum.Builder |
timeSeriesValue(TimeSeriesDataPoint... timeSeriesValue)
Indicates if the data point is a timeseries data type.
|
equalsBySdkFields, sdkFieldscopyapplyMutation, buildDatum.Builder scalarValue(String scalarValue)
Indicates if the data point is a scalar value such as integer, string, double, or Boolean.
scalarValue - Indicates if the data point is a scalar value such as integer, string, double, or Boolean.Datum.Builder timeSeriesValue(Collection<TimeSeriesDataPoint> timeSeriesValue)
Indicates if the data point is a timeseries data type.
timeSeriesValue - Indicates if the data point is a timeseries data type.Datum.Builder timeSeriesValue(TimeSeriesDataPoint... timeSeriesValue)
Indicates if the data point is a timeseries data type.
timeSeriesValue - Indicates if the data point is a timeseries data type.Datum.Builder timeSeriesValue(Consumer<TimeSeriesDataPoint.Builder>... timeSeriesValue)
Indicates if the data point is a timeseries data type.
This is a convenience method that creates an instance of theTimeSeriesDataPoint.Builder avoiding the need
to create one manually via
TimeSeriesDataPoint.builder().
When the Consumer completes,
SdkBuilder.build() is called
immediately and its result is passed to #timeSeriesValue(List.
timeSeriesValue - a consumer that will call methods on
TimeSeriesDataPoint.Builder#timeSeriesValue(java.util.Collection) Datum.Builder arrayValue(Collection<Datum> arrayValue)
Indicates if the data point is an array.
arrayValue - Indicates if the data point is an array.Datum.Builder arrayValue(Datum... arrayValue)
Indicates if the data point is an array.
arrayValue - Indicates if the data point is an array.Datum.Builder arrayValue(Consumer<Datum.Builder>... arrayValue)
Indicates if the data point is an array.
This is a convenience method that creates an instance of theDatum.Builder avoiding the need to create one
manually via Datum.builder().
When the Consumer completes,
SdkBuilder.build() is called immediately and
its result is passed to #arrayValue(List.
arrayValue - a consumer that will call methods on
Datum.Builder#arrayValue(java.util.Collection) Datum.Builder rowValue(Row rowValue)
Indicates if the data point is a row.
rowValue - Indicates if the data point is a row.default Datum.Builder rowValue(Consumer<Row.Builder> rowValue)
Indicates if the data point is a row.
This is a convenience method that creates an instance of theRow.Builder avoiding the need to create
one manually via Row.builder().
When the Consumer completes, SdkBuilder.build() is called immediately and its result is
passed to rowValue(Row).
rowValue - a consumer that will call methods on Row.BuilderrowValue(Row)Datum.Builder nullValue(Boolean nullValue)
Indicates if the data point is null.
nullValue - Indicates if the data point is null.Copyright © 2023. All rights reserved.