Class V1PatentSearchResponse.Builder
-
- All Implemented Interfaces:
public final class V1PatentSearchResponse.BuilderA builder for V1PatentSearchResponse.
-
-
Method Summary
-
-
Method Detail
-
limit
final V1PatentSearchResponse.Builder limit(Long limit)
Number of results returned
-
limit
final V1PatentSearchResponse.Builder limit(JsonField<Long> limit)
Sets Builder.limit to an arbitrary JSON value.
You should usually call Builder.limit with a well-typed Long value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
offset
final V1PatentSearchResponse.Builder offset(Long offset)
Current pagination offset
-
offset
final V1PatentSearchResponse.Builder offset(JsonField<Long> offset)
Sets Builder.offset to an arbitrary JSON value.
You should usually call Builder.offset with a well-typed Long value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
query
final V1PatentSearchResponse.Builder query(String query)
Original search query
-
query
final V1PatentSearchResponse.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.
-
results
final V1PatentSearchResponse.Builder results(List<V1PatentSearchResponse.Result> results)
Array of matching patent applications
-
results
final V1PatentSearchResponse.Builder results(JsonField<List<V1PatentSearchResponse.Result>> results)
Sets Builder.results to an arbitrary JSON value.
You should usually call Builder.results with a well-typed
List<Result>value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
addResult
final V1PatentSearchResponse.Builder addResult(V1PatentSearchResponse.Result result)
-
totalResults
final V1PatentSearchResponse.Builder totalResults(Long totalResults)
Total number of matching patent applications
-
totalResults
final V1PatentSearchResponse.Builder totalResults(JsonField<Long> totalResults)
Sets Builder.totalResults to an arbitrary JSON value.
You should usually call Builder.totalResults 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 V1PatentSearchResponse.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final V1PatentSearchResponse.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final V1PatentSearchResponse.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final V1PatentSearchResponse.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final V1PatentSearchResponse.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final V1PatentSearchResponse build()
Returns an immutable instance of V1PatentSearchResponse.
Further updates to this Builder will not mutate the returned instance.
-
-
-
-