Get the decoded query part of the uri. The query marker (?) itself is not included in the result. @return the query part of the URI.
()
| 652 | * @return the query part of the URI. |
| 653 | */ |
| 654 | public String getQuery() { |
| 655 | return URIHelper.decodeString(query, true); |
| 656 | } |
| 657 | |
| 658 | /** |
| 659 | * Get the encoded query part of the uri. The query marker (?) itself is not |
no test coverage detected