Class V1DocketResponse.Entry.Builder
-
- All Implemented Interfaces:
public final class V1DocketResponse.Entry.BuilderA builder for Entry.
-
-
Method Summary
-
-
Method Detail
-
date
final V1DocketResponse.Entry.Builder date(LocalDate date)
-
date
final V1DocketResponse.Entry.Builder date(Optional<LocalDate> date)
Alias for calling Builder.date with
date.orElse(null).
-
date
final V1DocketResponse.Entry.Builder date(JsonField<LocalDate> date)
Sets Builder.date to an arbitrary JSON value.
You should usually call Builder.date with a well-typed LocalDate value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
description
final V1DocketResponse.Entry.Builder description(String description)
-
description
final V1DocketResponse.Entry.Builder description(Optional<String> description)
Alias for calling Builder.description with
description.orElse(null).
-
description
final V1DocketResponse.Entry.Builder description(JsonField<String> description)
Sets Builder.description to an arbitrary JSON value.
You should usually call Builder.description with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
documents
final V1DocketResponse.Entry.Builder documents(List<V1DocketResponse.Entry.Document> documents)
-
documents
final V1DocketResponse.Entry.Builder documents(JsonField<List<V1DocketResponse.Entry.Document>> documents)
Sets Builder.documents to an arbitrary JSON value.
You should usually call Builder.documents with a well-typed
List<Document>value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
addDocument
final V1DocketResponse.Entry.Builder addDocument(V1DocketResponse.Entry.Document document)
-
entryNumber
final V1DocketResponse.Entry.Builder entryNumber(Long entryNumber)
-
entryNumber
final V1DocketResponse.Entry.Builder entryNumber(Long entryNumber)
Alias for Builder.entryNumber.
This unboxed primitive overload exists for backwards compatibility.
-
entryNumber
final V1DocketResponse.Entry.Builder entryNumber(Optional<Long> entryNumber)
Alias for calling Builder.entryNumber with
entryNumber.orElse(null).
-
entryNumber
final V1DocketResponse.Entry.Builder entryNumber(JsonField<Long> entryNumber)
Sets Builder.entryNumber to an arbitrary JSON value.
You should usually call Builder.entryNumber with a well-typed Long value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
additionalProperties
final V1DocketResponse.Entry.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final V1DocketResponse.Entry.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final V1DocketResponse.Entry.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final V1DocketResponse.Entry.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final V1DocketResponse.Entry.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final V1DocketResponse.Entry build()
Returns an immutable instance of Entry.
Further updates to this Builder will not mutate the returned instance.
-
-
-
-