MCPcopy Create free account
hub / github.com/EsperoTech/yaade / getQueryElement

Method getQueryElement

server/src/main/java/com/postman/collection/Url.java:432–443  ·  view source on GitHub ↗

@param key @return Property

(String key)

Source from the content-addressed store, hash-verified

430 * @return Property
431 */
432 public Property getQueryElement(String key) {
433 if (this.query == null) {
434 return null;
435 }
436 for (Property curVar : this.query) {
437 if (curVar.getKey().equals(key)) {
438 return curVar;
439 }
440 }
441 return null;
442
443 }
444
445
446 /**

Callers

nothing calls this directly

Calls 3

equalsMethod · 0.45
getKeyMethod · 0.45
getMethod · 0.45

Tested by

no test coverage detected