Class DocketDetail.Builder
-
- All Implemented Interfaces:
public final class DocketDetail.BuilderA builder for DocketDetail.
-
-
Method Summary
-
-
Method Detail
-
id
final DocketDetail.Builder id(String id)
-
id
final DocketDetail.Builder id(JsonField<String> id)
Sets Builder.id to an arbitrary JSON value.
You should usually call Builder.id with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
assignedTo
final DocketDetail.Builder assignedTo(String assignedTo)
-
assignedTo
final DocketDetail.Builder assignedTo(Optional<String> assignedTo)
Alias for calling Builder.assignedTo with
assignedTo.orElse(null).
-
assignedTo
final DocketDetail.Builder assignedTo(JsonField<String> assignedTo)
Sets Builder.assignedTo to an arbitrary JSON value.
You should usually call Builder.assignedTo with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
caseName
final DocketDetail.Builder caseName(String caseName)
-
caseName
final DocketDetail.Builder caseName(Optional<String> caseName)
Alias for calling Builder.caseName with
caseName.orElse(null).
-
caseName
final DocketDetail.Builder caseName(JsonField<String> caseName)
Sets Builder.caseName to an arbitrary JSON value.
You should usually call Builder.caseName with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
cause
final DocketDetail.Builder cause(String cause)
-
cause
final DocketDetail.Builder cause(Optional<String> cause)
Alias for calling Builder.cause with
cause.orElse(null).
-
cause
final DocketDetail.Builder cause(JsonField<String> cause)
Sets Builder.cause to an arbitrary JSON value.
You should usually call Builder.cause with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
court
final DocketDetail.Builder court(String court)
-
court
final DocketDetail.Builder court(Optional<String> court)
Alias for calling Builder.court with
court.orElse(null).
-
court
final DocketDetail.Builder court(JsonField<String> court)
Sets Builder.court to an arbitrary JSON value.
You should usually call Builder.court with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
courtId
final DocketDetail.Builder courtId(String courtId)
-
courtId
final DocketDetail.Builder courtId(Optional<String> courtId)
Alias for calling Builder.courtId with
courtId.orElse(null).
-
courtId
final DocketDetail.Builder courtId(JsonField<String> courtId)
Sets Builder.courtId to an arbitrary JSON value.
You should usually call Builder.courtId with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
dateFiled
final DocketDetail.Builder dateFiled(LocalDate dateFiled)
-
dateFiled
final DocketDetail.Builder dateFiled(Optional<LocalDate> dateFiled)
Alias for calling Builder.dateFiled with
dateFiled.orElse(null).
-
dateFiled
final DocketDetail.Builder dateFiled(JsonField<LocalDate> dateFiled)
Sets Builder.dateFiled to an arbitrary JSON value.
You should usually call Builder.dateFiled with a well-typed LocalDate value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
dateTerminated
final DocketDetail.Builder dateTerminated(LocalDate dateTerminated)
-
dateTerminated
final DocketDetail.Builder dateTerminated(Optional<LocalDate> dateTerminated)
Alias for calling Builder.dateTerminated with
dateTerminated.orElse(null).
-
dateTerminated
final DocketDetail.Builder dateTerminated(JsonField<LocalDate> dateTerminated)
Sets Builder.dateTerminated to an arbitrary JSON value.
You should usually call Builder.dateTerminated with a well-typed LocalDate value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
docketNumber
final DocketDetail.Builder docketNumber(String docketNumber)
-
docketNumber
final DocketDetail.Builder docketNumber(Optional<String> docketNumber)
Alias for calling Builder.docketNumber with
docketNumber.orElse(null).
-
docketNumber
final DocketDetail.Builder docketNumber(JsonField<String> docketNumber)
Sets Builder.docketNumber to an arbitrary JSON value.
You should usually call Builder.docketNumber with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
natureOfSuit
final DocketDetail.Builder natureOfSuit(String natureOfSuit)
-
natureOfSuit
final DocketDetail.Builder natureOfSuit(Optional<String> natureOfSuit)
Alias for calling Builder.natureOfSuit with
natureOfSuit.orElse(null).
-
natureOfSuit
final DocketDetail.Builder natureOfSuit(JsonField<String> natureOfSuit)
Sets Builder.natureOfSuit to an arbitrary JSON value.
You should usually call Builder.natureOfSuit with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
pacerCaseId
final DocketDetail.Builder pacerCaseId(String pacerCaseId)
-
pacerCaseId
final DocketDetail.Builder pacerCaseId(Optional<String> pacerCaseId)
Alias for calling Builder.pacerCaseId with
pacerCaseId.orElse(null).
-
pacerCaseId
final DocketDetail.Builder pacerCaseId(JsonField<String> pacerCaseId)
Sets Builder.pacerCaseId to an arbitrary JSON value.
You should usually call Builder.pacerCaseId with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
parties
final DocketDetail.Builder parties(List<String> parties)
-
parties
final DocketDetail.Builder parties(JsonField<List<String>> parties)
Sets Builder.parties to an arbitrary JSON value.
You should usually call Builder.parties with a well-typed
List<String>value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
addParty
final DocketDetail.Builder addParty(String party)
-
url
final DocketDetail.Builder url(String url)
-
url
final DocketDetail.Builder url(JsonField<String> url)
Sets Builder.url to an arbitrary JSON value.
You should usually call Builder.url with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
additionalProperties
final DocketDetail.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final DocketDetail.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final DocketDetail.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final DocketDetail.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final DocketDetail.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final DocketDetail build()
Returns an immutable instance of DocketDetail.
Further updates to this Builder will not mutate the returned instance.
-
-
-
-