Class BetaCompactionBlock.Builder
-
- All Implemented Interfaces:
public final class BetaCompactionBlock.BuilderA builder for BetaCompactionBlock.
-
-
Method Summary
-
-
Method Detail
-
content
final BetaCompactionBlock.Builder content(String content)
Summary of compacted content, or null if compaction failed
-
content
final BetaCompactionBlock.Builder content(Optional<String> content)
Alias for calling Builder.content with
content.orElse(null).
-
content
final BetaCompactionBlock.Builder content(JsonField<String> content)
Sets Builder.content to an arbitrary JSON value.
You should usually call Builder.content with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
type
final BetaCompactionBlock.Builder type(JsonValue type)
Sets the field to an arbitrary JSON value.
It is usually unnecessary to call this method because the field defaults to the following:
JsonValue.from("compaction")This method is primarily for setting the field to an undocumented or not yet supported value.
-
additionalProperties
final BetaCompactionBlock.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final BetaCompactionBlock.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final BetaCompactionBlock.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final BetaCompactionBlock.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final BetaCompactionBlock.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final BetaCompactionBlock build()
Returns an immutable instance of BetaCompactionBlock.
Further updates to this Builder will not mutate the returned instance.
The following fields are required:
.content()
-
-
-
-