Class V1DocketResponse.Builder
-
- All Implemented Interfaces:
public final class V1DocketResponse.BuilderA builder for V1DocketResponse.
-
-
Method Summary
-
-
Method Detail
-
court
final V1DocketResponse.Builder court(String court)
Echo of court filter (search mode only)
-
court
final V1DocketResponse.Builder court(Optional<String> court)
Alias for calling Builder.court with
court.orElse(null).
-
court
final V1DocketResponse.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.
-
dateFiledAfter
final V1DocketResponse.Builder dateFiledAfter(LocalDate dateFiledAfter)
Echo of date filter
-
dateFiledAfter
final V1DocketResponse.Builder dateFiledAfter(Optional<LocalDate> dateFiledAfter)
Alias for calling Builder.dateFiledAfter with
dateFiledAfter.orElse(null).
-
dateFiledAfter
final V1DocketResponse.Builder dateFiledAfter(JsonField<LocalDate> dateFiledAfter)
Sets Builder.dateFiledAfter to an arbitrary JSON value.
You should usually call Builder.dateFiledAfter with a well-typed LocalDate value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
dateFiledBefore
final V1DocketResponse.Builder dateFiledBefore(LocalDate dateFiledBefore)
Echo of date filter
-
dateFiledBefore
final V1DocketResponse.Builder dateFiledBefore(Optional<LocalDate> dateFiledBefore)
Alias for calling Builder.dateFiledBefore with
dateFiledBefore.orElse(null).
-
dateFiledBefore
final V1DocketResponse.Builder dateFiledBefore(JsonField<LocalDate> dateFiledBefore)
Sets Builder.dateFiledBefore to an arbitrary JSON value.
You should usually call Builder.dateFiledBefore with a well-typed LocalDate value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
docket
final V1DocketResponse.Builder docket(DocketDetail docket)
Full docket record (lookup mode)
-
docket
final V1DocketResponse.Builder docket(Optional<DocketDetail> docket)
Alias for calling Builder.docket with
docket.orElse(null).
-
docket
final V1DocketResponse.Builder docket(JsonField<DocketDetail> docket)
Sets Builder.docket to an arbitrary JSON value.
You should usually call Builder.docket with a well-typed DocketDetail value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
dockets
final V1DocketResponse.Builder dockets(List<DocketSearchResult> dockets)
Search results (search mode)
-
dockets
final V1DocketResponse.Builder dockets(JsonField<List<DocketSearchResult>> dockets)
Sets Builder.dockets to an arbitrary JSON value.
You should usually call Builder.dockets with a well-typed
List<DocketSearchResult>value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
addDocket
final V1DocketResponse.Builder addDocket(DocketSearchResult docket)
Adds a single DocketSearchResult to dockets.
-
entries
final V1DocketResponse.Builder entries(List<V1DocketResponse.Entry> entries)
Docket entries/filings (lookup mode with includeEntries)
-
entries
final V1DocketResponse.Builder entries(Optional<List<V1DocketResponse.Entry>> entries)
Alias for calling Builder.entries with
entries.orElse(null).
-
entries
final V1DocketResponse.Builder entries(JsonField<List<V1DocketResponse.Entry>> entries)
Sets Builder.entries to an arbitrary JSON value.
You should usually call Builder.entries with a well-typed
List<Entry>value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
addEntry
final V1DocketResponse.Builder addEntry(V1DocketResponse.Entry entry)
-
found
final V1DocketResponse.Builder found(Long found)
-
found
final V1DocketResponse.Builder found(JsonField<Long> found)
Sets Builder.found to an arbitrary JSON value.
You should usually call Builder.found with a well-typed Long value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
includeEntries
final V1DocketResponse.Builder includeEntries(Boolean includeEntries)
Whether entries were requested (lookup mode only)
-
includeEntries
final V1DocketResponse.Builder includeEntries(JsonField<Boolean> includeEntries)
Sets Builder.includeEntries to an arbitrary JSON value.
You should usually call Builder.includeEntries with a well-typed Boolean value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
pagination
final V1DocketResponse.Builder pagination(V1DocketResponse.Pagination pagination)
Pagination info for entry list (lookup mode with includeEntries)
-
pagination
final V1DocketResponse.Builder pagination(Optional<V1DocketResponse.Pagination> pagination)
Alias for calling Builder.pagination with
pagination.orElse(null).
-
pagination
final V1DocketResponse.Builder pagination(JsonField<V1DocketResponse.Pagination> pagination)
Sets Builder.pagination to an arbitrary JSON value.
You should usually call Builder.pagination with a well-typed Pagination value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
query
final V1DocketResponse.Builder query(String query)
Echo of search query (search mode only)
-
query
final V1DocketResponse.Builder query(Optional<String> query)
Alias for calling Builder.query with
query.orElse(null).
-
query
final V1DocketResponse.Builder query(JsonField<String> query)
Sets Builder.query to an arbitrary JSON value.
You should usually call Builder.query 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 V1DocketResponse.Builder type(V1DocketResponse.Type type)
-
type
final V1DocketResponse.Builder type(JsonField<V1DocketResponse.Type> type)
Sets Builder.type to an arbitrary JSON value.
You should usually call Builder.type with a well-typed Type value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
additionalProperties
final V1DocketResponse.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final V1DocketResponse.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final V1DocketResponse.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final V1DocketResponse.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final V1DocketResponse.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final V1DocketResponse build()
Returns an immutable instance of V1DocketResponse.
Further updates to this Builder will not mutate the returned instance.
-
-
-
-