I'm using Uri builder for building Uri with my parameters in this way:
Uri.Builder()
.scheme("https")
.authority("www.myawesomesite.com")
.appendPath("turtles")
.appendPath("types")
.appendQueryParameter("type", "1")
.appendQueryParameter("sort", "relevance")
.fragment("section-name");
.build()
It's fine and convinient way. But is there way how to teardown this Uri to get parameters from queries? To get "1" and "relevance" values parameters?