public static interface TabularConditions.Builder extends SdkPojo, CopyableBuilder<TabularConditions.Builder,TabularConditions>
| Modifier and Type | Method and Description |
|---|---|
TabularConditions.Builder |
orderBy(Collection<OrderBy> orderBy)
Filter criteria that orders the output.
|
TabularConditions.Builder |
orderBy(Consumer<OrderBy.Builder>... orderBy)
Filter criteria that orders the output.
|
TabularConditions.Builder |
orderBy(OrderBy... orderBy)
Filter criteria that orders the output.
|
TabularConditions.Builder |
propertyFilters(Collection<PropertyFilter> propertyFilters)
You can filter the request using various logical operators and a key-value format.
|
TabularConditions.Builder |
propertyFilters(Consumer<PropertyFilter.Builder>... propertyFilters)
You can filter the request using various logical operators and a key-value format.
|
TabularConditions.Builder |
propertyFilters(PropertyFilter... propertyFilters)
You can filter the request using various logical operators and a key-value format.
|
equalsBySdkFields, sdkFieldscopyapplyMutation, buildTabularConditions.Builder orderBy(Collection<OrderBy> orderBy)
Filter criteria that orders the output. It can be sorted in ascending or descending order.
orderBy - Filter criteria that orders the output. It can be sorted in ascending or descending order.TabularConditions.Builder orderBy(OrderBy... orderBy)
Filter criteria that orders the output. It can be sorted in ascending or descending order.
orderBy - Filter criteria that orders the output. It can be sorted in ascending or descending order.TabularConditions.Builder orderBy(Consumer<OrderBy.Builder>... orderBy)
Filter criteria that orders the output. It can be sorted in ascending or descending order.
This is a convenience method that creates an instance of theOrderBy.Builder avoiding the need to create one
manually via OrderBy.builder().
When the Consumer completes,
SdkBuilder.build() is called immediately and
its result is passed to #orderBy(List.
orderBy - a consumer that will call methods on
OrderBy.Builder#orderBy(java.util.Collection) TabularConditions.Builder propertyFilters(Collection<PropertyFilter> propertyFilters)
You can filter the request using various logical operators and a key-value format. For example:
{"key": "serverType", "value": "webServer"}
propertyFilters - You can filter the request using various logical operators and a key-value format. For example:
{"key": "serverType", "value": "webServer"}
TabularConditions.Builder propertyFilters(PropertyFilter... propertyFilters)
You can filter the request using various logical operators and a key-value format. For example:
{"key": "serverType", "value": "webServer"}
propertyFilters - You can filter the request using various logical operators and a key-value format. For example:
{"key": "serverType", "value": "webServer"}
TabularConditions.Builder propertyFilters(Consumer<PropertyFilter.Builder>... propertyFilters)
You can filter the request using various logical operators and a key-value format. For example:
{"key": "serverType", "value": "webServer"}
PropertyFilter.Builder avoiding the need to create
one manually via PropertyFilter.builder().
When the Consumer completes,
SdkBuilder.build() is called
immediately and its result is passed to #propertyFilters(List.
propertyFilters - a consumer that will call methods on
PropertyFilter.Builder#propertyFilters(java.util.Collection) Copyright © 2023. All rights reserved.