MCPcopy Index your code
hub / github.com/OpenFeign/feign / queries

Method queries

core/src/main/java/feign/RequestTemplate.java:693–701  ·  view source on GitHub ↗

Sets the Query Parameters. @param queries to use for this request. @return a RequestTemplate for chaining.

(Map<String, Collection<String>> queries)

Source from the content-addressed store, hash-verified

691 * @return a RequestTemplate for chaining.
692 */
693 @SuppressWarnings("unused")
694 public RequestTemplate queries(Map<String, Collection<String>> queries) {
695 if (queries == null || queries.isEmpty()) {
696 this.queries.clear();
697 } else {
698 queries.forEach(this::query);
699 }
700 return this;
701 }
702
703 /**
704 * Return an immutable Map of all Query Parameters and their values.

Calls 3

isEmptyMethod · 0.80
putMethod · 0.65
getValuesMethod · 0.45