This file is indexed.

/usr/share/doc/libgluegen2-java/com/jogamp/common/net/Uri.html is in libgluegen2-doc 2.3.2-5.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

   1
   2
   3
   4
   5
   6
   7
   8
   9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  32
  33
  34
  35
  36
  37
  38
  39
  40
  41
  42
  43
  44
  45
  46
  47
  48
  49
  50
  51
  52
  53
  54
  55
  56
  57
  58
  59
  60
  61
  62
  63
  64
  65
  66
  67
  68
  69
  70
  71
  72
  73
  74
  75
  76
  77
  78
  79
  80
  81
  82
  83
  84
  85
  86
  87
  88
  89
  90
  91
  92
  93
  94
  95
  96
  97
  98
  99
 100
 101
 102
 103
 104
 105
 106
 107
 108
 109
 110
 111
 112
 113
 114
 115
 116
 117
 118
 119
 120
 121
 122
 123
 124
 125
 126
 127
 128
 129
 130
 131
 132
 133
 134
 135
 136
 137
 138
 139
 140
 141
 142
 143
 144
 145
 146
 147
 148
 149
 150
 151
 152
 153
 154
 155
 156
 157
 158
 159
 160
 161
 162
 163
 164
 165
 166
 167
 168
 169
 170
 171
 172
 173
 174
 175
 176
 177
 178
 179
 180
 181
 182
 183
 184
 185
 186
 187
 188
 189
 190
 191
 192
 193
 194
 195
 196
 197
 198
 199
 200
 201
 202
 203
 204
 205
 206
 207
 208
 209
 210
 211
 212
 213
 214
 215
 216
 217
 218
 219
 220
 221
 222
 223
 224
 225
 226
 227
 228
 229
 230
 231
 232
 233
 234
 235
 236
 237
 238
 239
 240
 241
 242
 243
 244
 245
 246
 247
 248
 249
 250
 251
 252
 253
 254
 255
 256
 257
 258
 259
 260
 261
 262
 263
 264
 265
 266
 267
 268
 269
 270
 271
 272
 273
 274
 275
 276
 277
 278
 279
 280
 281
 282
 283
 284
 285
 286
 287
 288
 289
 290
 291
 292
 293
 294
 295
 296
 297
 298
 299
 300
 301
 302
 303
 304
 305
 306
 307
 308
 309
 310
 311
 312
 313
 314
 315
 316
 317
 318
 319
 320
 321
 322
 323
 324
 325
 326
 327
 328
 329
 330
 331
 332
 333
 334
 335
 336
 337
 338
 339
 340
 341
 342
 343
 344
 345
 346
 347
 348
 349
 350
 351
 352
 353
 354
 355
 356
 357
 358
 359
 360
 361
 362
 363
 364
 365
 366
 367
 368
 369
 370
 371
 372
 373
 374
 375
 376
 377
 378
 379
 380
 381
 382
 383
 384
 385
 386
 387
 388
 389
 390
 391
 392
 393
 394
 395
 396
 397
 398
 399
 400
 401
 402
 403
 404
 405
 406
 407
 408
 409
 410
 411
 412
 413
 414
 415
 416
 417
 418
 419
 420
 421
 422
 423
 424
 425
 426
 427
 428
 429
 430
 431
 432
 433
 434
 435
 436
 437
 438
 439
 440
 441
 442
 443
 444
 445
 446
 447
 448
 449
 450
 451
 452
 453
 454
 455
 456
 457
 458
 459
 460
 461
 462
 463
 464
 465
 466
 467
 468
 469
 470
 471
 472
 473
 474
 475
 476
 477
 478
 479
 480
 481
 482
 483
 484
 485
 486
 487
 488
 489
 490
 491
 492
 493
 494
 495
 496
 497
 498
 499
 500
 501
 502
 503
 504
 505
 506
 507
 508
 509
 510
 511
 512
 513
 514
 515
 516
 517
 518
 519
 520
 521
 522
 523
 524
 525
 526
 527
 528
 529
 530
 531
 532
 533
 534
 535
 536
 537
 538
 539
 540
 541
 542
 543
 544
 545
 546
 547
 548
 549
 550
 551
 552
 553
 554
 555
 556
 557
 558
 559
 560
 561
 562
 563
 564
 565
 566
 567
 568
 569
 570
 571
 572
 573
 574
 575
 576
 577
 578
 579
 580
 581
 582
 583
 584
 585
 586
 587
 588
 589
 590
 591
 592
 593
 594
 595
 596
 597
 598
 599
 600
 601
 602
 603
 604
 605
 606
 607
 608
 609
 610
 611
 612
 613
 614
 615
 616
 617
 618
 619
 620
 621
 622
 623
 624
 625
 626
 627
 628
 629
 630
 631
 632
 633
 634
 635
 636
 637
 638
 639
 640
 641
 642
 643
 644
 645
 646
 647
 648
 649
 650
 651
 652
 653
 654
 655
 656
 657
 658
 659
 660
 661
 662
 663
 664
 665
 666
 667
 668
 669
 670
 671
 672
 673
 674
 675
 676
 677
 678
 679
 680
 681
 682
 683
 684
 685
 686
 687
 688
 689
 690
 691
 692
 693
 694
 695
 696
 697
 698
 699
 700
 701
 702
 703
 704
 705
 706
 707
 708
 709
 710
 711
 712
 713
 714
 715
 716
 717
 718
 719
 720
 721
 722
 723
 724
 725
 726
 727
 728
 729
 730
 731
 732
 733
 734
 735
 736
 737
 738
 739
 740
 741
 742
 743
 744
 745
 746
 747
 748
 749
 750
 751
 752
 753
 754
 755
 756
 757
 758
 759
 760
 761
 762
 763
 764
 765
 766
 767
 768
 769
 770
 771
 772
 773
 774
 775
 776
 777
 778
 779
 780
 781
 782
 783
 784
 785
 786
 787
 788
 789
 790
 791
 792
 793
 794
 795
 796
 797
 798
 799
 800
 801
 802
 803
 804
 805
 806
 807
 808
 809
 810
 811
 812
 813
 814
 815
 816
 817
 818
 819
 820
 821
 822
 823
 824
 825
 826
 827
 828
 829
 830
 831
 832
 833
 834
 835
 836
 837
 838
 839
 840
 841
 842
 843
 844
 845
 846
 847
 848
 849
 850
 851
 852
 853
 854
 855
 856
 857
 858
 859
 860
 861
 862
 863
 864
 865
 866
 867
 868
 869
 870
 871
 872
 873
 874
 875
 876
 877
 878
 879
 880
 881
 882
 883
 884
 885
 886
 887
 888
 889
 890
 891
 892
 893
 894
 895
 896
 897
 898
 899
 900
 901
 902
 903
 904
 905
 906
 907
 908
 909
 910
 911
 912
 913
 914
 915
 916
 917
 918
 919
 920
 921
 922
 923
 924
 925
 926
 927
 928
 929
 930
 931
 932
 933
 934
 935
 936
 937
 938
 939
 940
 941
 942
 943
 944
 945
 946
 947
 948
 949
 950
 951
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html>
<head>
<title>Uri (GlueGen Runtime Documentation)</title>
<meta name="date" content="2016-08-04">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>
<body>
<script type="text/javascript"><!--
    try {
        if (location.href.indexOf('is-external=true') == -1) {
            parent.document.title="Uri (GlueGen Runtime Documentation)";
        }
    }
    catch(err) {
    }
//-->
var methods = {"i0":9,"i1":10,"i2":9,"i3":9,"i4":9,"i5":9,"i6":9,"i7":9,"i8":9,"i9":9,"i10":9,"i11":9,"i12":9,"i13":9,"i14":10,"i15":10,"i16":10,"i17":10,"i18":10,"i19":10,"i20":10,"i21":10,"i22":10,"i23":10,"i24":10,"i25":10,"i26":10,"i27":10,"i28":10,"i29":10,"i30":10,"i31":9,"i32":9,"i33":9,"i34":9};
var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
var altColor = "altColor";
var rowColor = "rowColor";
var tableTab = "tableTab";
var activeTableTab = "activeTableTab";
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!--   -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!--   -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-all.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../com/jogamp/common/net/PiggybackURLContext.html" title="interface in com.jogamp.common.net"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
<li><a href="../../../../com/jogamp/common/net/Uri.ASCIIEncoded.html" title="class in com.jogamp.common.net"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?com/jogamp/common/net/Uri.html" target="_top">Frames</a></li>
<li><a href="Uri.html" target="_top">No&nbsp;Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
  allClassesLink = document.getElementById("allclasses_navbar_top");
  if(window==top) {
    allClassesLink.style.display = "block";
  }
  else {
    allClassesLink.style.display = "none";
  }
  //-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary:&nbsp;</li>
<li><a href="#nested.class.summary">Nested</a>&nbsp;|&nbsp;</li>
<li><a href="#field.summary">Field</a>&nbsp;|&nbsp;</li>
<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
<li><a href="#method.summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail:&nbsp;</li>
<li><a href="#field.detail">Field</a>&nbsp;|&nbsp;</li>
<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
<li><a href="#method.detail">Method</a></li>
</ul>
</div>
<a name="skip.navbar.top">
<!--   -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<!-- ======== START OF CLASS DATA ======== -->
<div class="header">
<div class="subTitle">com.jogamp.common.net</div>
<h2 title="Class Uri" class="title">Class Uri</h2>
</div>
<div class="contentContainer">
<ul class="inheritance">
<li><a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">java.lang.Object</a></li>
<li>
<ul class="inheritance">
<li>com.jogamp.common.net.Uri</li>
</ul>
</li>
</ul>
<div class="description">
<ul class="blockList">
<li class="blockList">
<hr>
<br>
<pre>public class <span class="typeNameLabel">Uri</span>
extends <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a></pre>
<div class="block">This class implements an immutable Uri as defined by <a href="https://tools.ietf.org/html/rfc2396">RFC 2396</a>.
 <p>
 Character encoding is employed as defined by <a href="https://tools.ietf.org/html/rfc3986">RFC 3986</a>,
 see <a href="https://tools.ietf.org/html/rfc3986#section-2.1">RFC 3986 section 2.1</a>,
 while multibyte unicode characters are preserved in encoded parts.
 </p>

 <pre>
     1 [scheme:]scheme-specific-part[#fragment]
     2 [scheme:][//authority]path[?query][#fragment]
     3 [scheme:][//[user-info@]host[:port]]path[?query][#fragment]

        scheme-specific-part: [//authority]path[?query]
        authority:            [user-info@]host[:port]
 </pre>
 <p>
 <a href="https://tools.ietf.org/html/rfc3986#section-2.2">RFC 3986 section 2.2</a> <i>Reserved Characters</i> (January 2005)
 <table border="1">
    <tr>
    <td><code>!</code></td>
    <td><code>*</code></td>
    <td><code>'</code></td>
    <td><code>(</code></td>
    <td><code>)</code></td>
    <td><code>;</code></td>
    <td><code>:</code></td>
    <td><code>@</code></td>
    <td><code>&amp;</code></td>
    <td><code>=</code></td>
    <td><code>+</code></td>
    <td><code>$</code></td>
    <td><code>,</code></td>
    <td><code>/</code></td>
    <td><code>?</code></td>
    <td><code>#</code></td>
    <td><code>[</code></td>
    <td><code>]</code></td>
    </tr>
 </table>
 </p>
 <p>
 <a href="https://tools.ietf.org/html/rfc3986#section-2.3">RFC 3986 section 2.3</a> <i>Unreserved Characters</i> (January 2005)
 <table border="1">
    <tr>
    <td><code>A</code></td>
    <td><code>B</code></td>
    <td><code>C</code></td>
    <td><code>D</code></td>
    <td><code>E</code></td>
    <td><code>F</code></td>
    <td><code>G</code></td>
    <td><code>H</code></td>
    <td><code>I</code></td>
    <td><code>J</code></td>
    <td><code>K</code></td>
    <td><code>L</code></td>
    <td><code>M</code></td>
    <td><code>N</code></td>
    <td><code>O</code></td>
    <td><code>P</code></td>
    <td><code>Q</code></td>
    <td><code>R</code></td>
    <td><code>S</code></td>
    <td><code>T</code></td>
    <td><code>U</code></td>
    <td><code>V</code></td>
    <td><code>W</code></td>
    <td><code>X</code></td>
    <td><code>Y</code></td>
    <td><code>Z</code></td>
    </tr>
    <tr>
    <td><code>a</code></td>
    <td><code>b</code></td>
    <td><code>c</code></td>
    <td><code>d</code></td>
    <td><code>e</code></td>
    <td><code>f</code></td>
    <td><code>g</code></td>
    <td><code>h</code></td>
    <td><code>i</code></td>
    <td><code>j</code></td>
    <td><code>k</code></td>
    <td><code>l</code></td>
    <td><code>m</code></td>
    <td><code>n</code></td>
    <td><code>o</code></td>
    <td><code>p</code></td>
    <td><code>q</code></td>
    <td><code>r</code></td>
    <td><code>s</code></td>
    <td><code>t</code></td>
    <td><code>u</code></td>
    <td><code>v</code></td>
    <td><code>w</code></td>
    <td><code>x</code></td>
    <td><code>y</code></td>
    <td><code>z</code></td>
    </tr>
    <tr>
    <td><code>0</code></td>
    <td><code>1</code></td>
    <td><code>2</code></td>
    <td><code>3</code></td>
    <td><code>4</code></td>
    <td><code>5</code></td>
    <td><code>6</code></td>
    <td><code>7</code></td>
    <td><code>8</code></td>
    <td><code>9</code></td>
    <td><code>-</code></td>
    <td><code>_</code></td>
    <td><code>.</code></td>
    <td><code>~</code></td>
    </tr>
 </table>
 </p>
 <p>
 Other characters in a Uri must be percent encoded.
 </p></div>
<dl>
<dt><span class="simpleTagLabel">Since:</span></dt>
<dd>2.2.1</dd>
</dl>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- ======== NESTED CLASS SUMMARY ======== -->
<ul class="blockList">
<li class="blockList"><a name="nested.class.summary">
<!--   -->
</a>
<h3>Nested Class Summary</h3>
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Nested Class Summary table, listing nested classes, and an explanation">
<caption><span>Nested Classes</span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Class and Description</th>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static class&nbsp;</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/jogamp/common/net/Uri.ASCIIEncoded.html" title="class in com.jogamp.common.net">Uri.ASCIIEncoded</a></span></code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static class&nbsp;</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/jogamp/common/net/Uri.Encoded.html" title="class in com.jogamp.common.net">Uri.Encoded</a></span></code>
<div class="block">Immutable RFC3986 encoded string.</div>
</td>
</tr>
</table>
</li>
</ul>
<!-- =========== FIELD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="field.summary">
<!--   -->
</a>
<h3>Field Summary</h3>
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Field Summary table, listing fields, and an explanation">
<caption><span>Fields</span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Field and Description</th>
</tr>
<tr class="altColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/jogamp/common/net/Uri.html#absolute">absolute</a></span></code>
<div class="block">Indicating whether this Uri is absolute, i.e.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../../../com/jogamp/common/net/Uri.Encoded.html" title="class in com.jogamp.common.net">Uri.Encoded</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/jogamp/common/net/Uri.html#authority">authority</a></span></code>
<div class="block">Encoded <code>authority</code> part of <code>scheme-specific-part</code>, <code>null</code> if undefined.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/jogamp/common/net/Uri.html#AUTHORITY_LEGAL">AUTHORITY_LEGAL</a></span></code>
<div class="block">Valid charset for RFC 2396 <code>authority</code>,
 additional to legal <code>alphanum</code> characters.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/jogamp/common/net/Uri.html#FILE_SCHEME">FILE_SCHEME</a></span></code>
<div class="block">"file"</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/jogamp/common/net/Uri.html#FRAG_LEGAL">FRAG_LEGAL</a></span></code>
<div class="block">Valid charset for RFC 2396 <code>fragment</code>,
 additional to legal <code>alphanum</code> characters.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../../../com/jogamp/common/net/Uri.Encoded.html" title="class in com.jogamp.common.net">Uri.Encoded</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/jogamp/common/net/Uri.html#fragment">fragment</a></span></code>
<div class="block">Encoded <code>fragment</code>, <code>null</code> if undefined.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static char</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/jogamp/common/net/Uri.html#FRAGMENT_SEPARATOR">FRAGMENT_SEPARATOR</a></span></code>
<div class="block">35</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/jogamp/common/net/Uri.html#hasAuthority">hasAuthority</a></span></code>
<div class="block">Indicating whether <code>authority</code> part is defined or not.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../../com/jogamp/common/net/Uri.Encoded.html" title="class in com.jogamp.common.net">Uri.Encoded</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/jogamp/common/net/Uri.html#host">host</a></span></code>
<div class="block">Encoded <code>host</code> part of <code>authority</code> and <code>scheme-specific-part</code>, <code>null</code> if undefined.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/jogamp/common/net/Uri.html#HTTP_SCHEME">HTTP_SCHEME</a></span></code>
<div class="block">"http"</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/jogamp/common/net/Uri.html#HTTPS_SCHEME">HTTPS_SCHEME</a></span></code>
<div class="block">"https"</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../../../com/jogamp/common/net/Uri.Encoded.html" title="class in com.jogamp.common.net">Uri.Encoded</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/jogamp/common/net/Uri.html#input">input</a></span></code>
<div class="block">Encoded input string used at construction, never <code>null</code>.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/jogamp/common/net/Uri.html#JAR_SCHEME">JAR_SCHEME</a></span></code>
<div class="block">"jar"</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static char</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/jogamp/common/net/Uri.html#JAR_SCHEME_SEPARATOR">JAR_SCHEME_SEPARATOR</a></span></code>
<div class="block">A JAR sub-protocol is separated from the JAR entry w/ this separator 33.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/jogamp/common/net/Uri.html#opaque">opaque</a></span></code>
<div class="block">Indicating whether this Uri is opaque, i.e.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../../../com/jogamp/common/net/Uri.Encoded.html" title="class in com.jogamp.common.net">Uri.Encoded</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/jogamp/common/net/Uri.html#path">path</a></span></code>
<div class="block">Encoded <code>path</code> part of <code>scheme-specific-part</code>, never <code>null</code>.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/jogamp/common/net/Uri.html#PATH_LEGAL">PATH_LEGAL</a></span></code>
<div class="block">Valid charset for RFC 2396 <code>path</code>,
 additional to legal <code>alphanum</code> characters.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>int</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/jogamp/common/net/Uri.html#port">port</a></span></code>
<div class="block">Encoded <code>port</code> part of <code>authority</code> and <code>scheme-specific-part</code>, <code>-1</code> if undefined.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../../com/jogamp/common/net/Uri.Encoded.html" title="class in com.jogamp.common.net">Uri.Encoded</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/jogamp/common/net/Uri.html#query">query</a></span></code>
<div class="block">Encoded <code>query</code> part of <code>scheme-specific-part</code>, <code>null</code> if undefined.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/jogamp/common/net/Uri.html#QUERY_LEGAL">QUERY_LEGAL</a></span></code>
<div class="block">Valid charset for RFC 2396 <code>query</code>,
 additional to legal <code>alphanum</code> characters.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static char</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/jogamp/common/net/Uri.html#QUERY_SEPARATOR">QUERY_SEPARATOR</a></span></code>
<div class="block">63</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/jogamp/common/net/Uri.html#RESERVED">RESERVED</a></span></code>
<div class="block">RFC 3986 section 2.2 Reserved Characters (January 2005)</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/jogamp/common/net/Uri.html#RESERVED_2">RESERVED_2</a></span></code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../../../com/jogamp/common/net/Uri.Encoded.html" title="class in com.jogamp.common.net">Uri.Encoded</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/jogamp/common/net/Uri.html#scheme">scheme</a></span></code>
<div class="block">Encoded <code>scheme</code>, <code>null</code> if undefined.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static char</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/jogamp/common/net/Uri.html#SCHEME_SEPARATOR">SCHEME_SEPARATOR</a></span></code>
<div class="block">58</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../../../com/jogamp/common/net/Uri.Encoded.html" title="class in com.jogamp.common.net">Uri.Encoded</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/jogamp/common/net/Uri.html#schemeSpecificPart">schemeSpecificPart</a></span></code>
<div class="block">Encoded <code>scheme-specific-part</code>, never <code>null</code>.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/jogamp/common/net/Uri.html#SSP_LEGAL">SSP_LEGAL</a></span></code>
<div class="block">Valid charset for RFC 2396 <code>scheme-specific-part</code>,
 additional to legal <code>alphanum</code> characters.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/jogamp/common/net/Uri.html#UNRESERVED">UNRESERVED</a></span></code>
<div class="block">RFC 3986 section 2.3 Unreserved Characters (January 2005)</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../../com/jogamp/common/net/Uri.Encoded.html" title="class in com.jogamp.common.net">Uri.Encoded</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/jogamp/common/net/Uri.html#userInfo">userInfo</a></span></code>
<div class="block">Encoded <code>userinfo</code> part of <code>authority</code> and <code>scheme-specific-part</code>, <code>null</code> if undefined.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/jogamp/common/net/Uri.html#USERINFO_LEGAL">USERINFO_LEGAL</a></span></code>
<div class="block">Valid charset for RFC 2396 <code>authority</code>'s <code>user-info</code>,
 additional to legal <code>alphanum</code> characters.</div>
</td>
</tr>
</table>
</li>
</ul>
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor.summary">
<!--   -->
</a>
<h3>Constructor Summary</h3>
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation">
<caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colOne" scope="col">Constructor and Description</th>
</tr>
<tr class="altColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../com/jogamp/common/net/Uri.html#Uri-com.jogamp.common.net.Uri.Encoded-">Uri</a></span>(<a href="../../../../com/jogamp/common/net/Uri.Encoded.html" title="class in com.jogamp.common.net">Uri.Encoded</a>&nbsp;uri)</code>
<div class="block">Creates a new Uri instance according to the given encoded string <code>uri</code>.</div>
</td>
</tr>
</table>
</li>
</ul>
<!-- ========== METHOD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="method.summary">
<!--   -->
</a>
<h3>Method Summary</h3>
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t1" class="tableTab"><span><a href="javascript:show(1);">Static Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tr id="i0" class="altColor">
<td class="colFirst"><code>static <a href="../../../../com/jogamp/common/net/Uri.html" title="class in com.jogamp.common.net">Uri</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/jogamp/common/net/Uri.html#cast-java.lang.String-">cast</a></span>(<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;encodedUri)</code>
<div class="block">Casts the given encoded String to a <a href="../../../../com/jogamp/common/net/Uri.Encoded.html#cast-java.lang.String-"><code>new Encoded instance</code></a>
 used to create the resulting Uri instance via <a href="../../../../com/jogamp/common/net/Uri.html#Uri-com.jogamp.common.net.Uri.Encoded-"><code>Uri(Encoded)</code></a>.</div>
</td>
</tr>
<tr id="i1" class="rowColor">
<td class="colFirst"><code><a href="../../../../com/jogamp/common/net/Uri.html" title="class in com.jogamp.common.net">Uri</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/jogamp/common/net/Uri.html#concat-com.jogamp.common.net.Uri.Encoded-">concat</a></span>(<a href="../../../../com/jogamp/common/net/Uri.Encoded.html" title="class in com.jogamp.common.net">Uri.Encoded</a>&nbsp;suffix)</code>
<div class="block">Concatenates the given encoded string to the <a href="../../../../com/jogamp/common/net/Uri.html#getEncoded--"><code>encoded uri</code></a>
 of this instance and returns <a href="../../../../com/jogamp/common/net/Uri.html#Uri-com.jogamp.common.net.Uri.Encoded-"><code>a new Uri instance</code></a> with the result.</div>
</td>
</tr>
<tr id="i2" class="altColor">
<td class="colFirst"><code>static <a href="../../../../com/jogamp/common/net/Uri.html" title="class in com.jogamp.common.net">Uri</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/jogamp/common/net/Uri.html#create-java.lang.String-java.lang.String-java.lang.String-">create</a></span>(<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;scheme,
      <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;ssp,
      <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;fragment)</code>
<div class="block">Creates a new Uri instance using the given unencoded arguments.</div>
</td>
</tr>
<tr id="i3" class="rowColor">
<td class="colFirst"><code>static <a href="../../../../com/jogamp/common/net/Uri.html" title="class in com.jogamp.common.net">Uri</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/jogamp/common/net/Uri.html#create-java.lang.String-java.lang.String-java.lang.String-int-java.lang.String-java.lang.String-java.lang.String-">create</a></span>(<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;scheme,
      <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;userinfo,
      <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;host,
      int&nbsp;port,
      <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;path,
      <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;query,
      <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;fragment)</code>
<div class="block">Creates a new Uri instance using the given unencoded arguments.</div>
</td>
</tr>
<tr id="i4" class="altColor">
<td class="colFirst"><code>static <a href="../../../../com/jogamp/common/net/Uri.html" title="class in com.jogamp.common.net">Uri</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/jogamp/common/net/Uri.html#create-java.lang.String-java.lang.String-java.lang.String-java.lang.String-">create</a></span>(<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;scheme,
      <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;host,
      <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;path,
      <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;fragment)</code>
<div class="block">Creates a new Uri instance using the given unencoded arguments.</div>
</td>
</tr>
<tr id="i5" class="rowColor">
<td class="colFirst"><code>static <a href="../../../../com/jogamp/common/net/Uri.html" title="class in com.jogamp.common.net">Uri</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/jogamp/common/net/Uri.html#create-java.lang.String-java.lang.String-java.lang.String-java.lang.String-java.lang.String-">create</a></span>(<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;scheme,
      <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;authority,
      <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;path,
      <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;query,
      <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;fragment)</code>
<div class="block">Creates a new Uri instance using the given unencoded arguments.</div>
</td>
</tr>
<tr id="i6" class="altColor">
<td class="colFirst"><code>static <a href="../../../../com/jogamp/common/net/Uri.html" title="class in com.jogamp.common.net">Uri</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/jogamp/common/net/Uri.html#create-com.jogamp.common.net.Uri.Encoded-com.jogamp.common.net.Uri.Encoded-com.jogamp.common.net.Uri.Encoded-">create</a></span>(<a href="../../../../com/jogamp/common/net/Uri.Encoded.html" title="class in com.jogamp.common.net">Uri.Encoded</a>&nbsp;scheme,
      <a href="../../../../com/jogamp/common/net/Uri.Encoded.html" title="class in com.jogamp.common.net">Uri.Encoded</a>&nbsp;ssp,
      <a href="../../../../com/jogamp/common/net/Uri.Encoded.html" title="class in com.jogamp.common.net">Uri.Encoded</a>&nbsp;fragment)</code>
<div class="block">Creates a new Uri instance using the given encoded arguments.</div>
</td>
</tr>
<tr id="i7" class="rowColor">
<td class="colFirst"><code>static <a href="../../../../com/jogamp/common/net/Uri.html" title="class in com.jogamp.common.net">Uri</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/jogamp/common/net/Uri.html#create-com.jogamp.common.net.Uri.Encoded-com.jogamp.common.net.Uri.Encoded-com.jogamp.common.net.Uri.Encoded-int-com.jogamp.common.net.Uri.Encoded-com.jogamp.common.net.Uri.Encoded-com.jogamp.common.net.Uri.Encoded-">create</a></span>(<a href="../../../../com/jogamp/common/net/Uri.Encoded.html" title="class in com.jogamp.common.net">Uri.Encoded</a>&nbsp;scheme,
      <a href="../../../../com/jogamp/common/net/Uri.Encoded.html" title="class in com.jogamp.common.net">Uri.Encoded</a>&nbsp;userinfo,
      <a href="../../../../com/jogamp/common/net/Uri.Encoded.html" title="class in com.jogamp.common.net">Uri.Encoded</a>&nbsp;host,
      int&nbsp;port,
      <a href="../../../../com/jogamp/common/net/Uri.Encoded.html" title="class in com.jogamp.common.net">Uri.Encoded</a>&nbsp;path,
      <a href="../../../../com/jogamp/common/net/Uri.Encoded.html" title="class in com.jogamp.common.net">Uri.Encoded</a>&nbsp;query,
      <a href="../../../../com/jogamp/common/net/Uri.Encoded.html" title="class in com.jogamp.common.net">Uri.Encoded</a>&nbsp;fragment)</code>
<div class="block">Creates a new Uri instance using the given encoded arguments.</div>
</td>
</tr>
<tr id="i8" class="altColor">
<td class="colFirst"><code>static <a href="../../../../com/jogamp/common/net/Uri.html" title="class in com.jogamp.common.net">Uri</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/jogamp/common/net/Uri.html#create-com.jogamp.common.net.Uri.Encoded-com.jogamp.common.net.Uri.Encoded-com.jogamp.common.net.Uri.Encoded-com.jogamp.common.net.Uri.Encoded-">create</a></span>(<a href="../../../../com/jogamp/common/net/Uri.Encoded.html" title="class in com.jogamp.common.net">Uri.Encoded</a>&nbsp;scheme,
      <a href="../../../../com/jogamp/common/net/Uri.Encoded.html" title="class in com.jogamp.common.net">Uri.Encoded</a>&nbsp;host,
      <a href="../../../../com/jogamp/common/net/Uri.Encoded.html" title="class in com.jogamp.common.net">Uri.Encoded</a>&nbsp;path,
      <a href="../../../../com/jogamp/common/net/Uri.Encoded.html" title="class in com.jogamp.common.net">Uri.Encoded</a>&nbsp;fragment)</code>
<div class="block">Creates a new Uri instance using the given encoded arguments.</div>
</td>
</tr>
<tr id="i9" class="rowColor">
<td class="colFirst"><code>static <a href="../../../../com/jogamp/common/net/Uri.html" title="class in com.jogamp.common.net">Uri</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/jogamp/common/net/Uri.html#create-com.jogamp.common.net.Uri.Encoded-com.jogamp.common.net.Uri.Encoded-com.jogamp.common.net.Uri.Encoded-com.jogamp.common.net.Uri.Encoded-com.jogamp.common.net.Uri.Encoded-">create</a></span>(<a href="../../../../com/jogamp/common/net/Uri.Encoded.html" title="class in com.jogamp.common.net">Uri.Encoded</a>&nbsp;scheme,
      <a href="../../../../com/jogamp/common/net/Uri.Encoded.html" title="class in com.jogamp.common.net">Uri.Encoded</a>&nbsp;authority,
      <a href="../../../../com/jogamp/common/net/Uri.Encoded.html" title="class in com.jogamp.common.net">Uri.Encoded</a>&nbsp;path,
      <a href="../../../../com/jogamp/common/net/Uri.Encoded.html" title="class in com.jogamp.common.net">Uri.Encoded</a>&nbsp;query,
      <a href="../../../../com/jogamp/common/net/Uri.Encoded.html" title="class in com.jogamp.common.net">Uri.Encoded</a>&nbsp;fragment)</code>
<div class="block">Creates a new Uri instance using the given encoded arguments.</div>
</td>
</tr>
<tr id="i10" class="altColor">
<td class="colFirst"><code>static <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/jogamp/common/net/Uri.html#decode-java.lang.String-">decode</a></span>(<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;encoded)</code>
<div class="block">Decodes the string argument which is assumed to be encoded in the <code>x-www-form-urlencoded</code> MIME content type using the UTF-8 encoding scheme.</div>
</td>
</tr>
<tr id="i11" class="rowColor">
<td class="colFirst"><code>static <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/jogamp/common/net/Uri.html#decode-com.jogamp.common.net.Uri.Encoded-">decode</a></span>(<a href="../../../../com/jogamp/common/net/Uri.Encoded.html" title="class in com.jogamp.common.net">Uri.Encoded</a>&nbsp;encoded)</code>
<div class="block">Safe <a href="../../../../com/jogamp/common/net/Uri.Encoded.html#decode--"><code>Uri.Encoded.decode()</code></a> call on optional <code>encoded</code> instance.</div>
</td>
</tr>
<tr id="i12" class="altColor">
<td class="colFirst"><code>static <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/jogamp/common/net/Uri.html#encode-java.lang.String-java.lang.String-">encode</a></span>(<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;vanilla,
      <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;legal)</code>
<div class="block">All characters are encoded into their hexadecimal value prepended by '%', except:
 
   letters ('a'..'z', 'A'..'Z')
   numbers ('0'..'9')
   characters in the legal-set parameter
    others (unicode characters that are not in
        US-ASCII set, and are not ISO Control or are not ISO Space characters)
 </div>
</td>
</tr>
<tr id="i13" class="rowColor">
<td class="colFirst"><code>static <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/jogamp/common/net/Uri.html#encodeToASCIIString-java.lang.String-">encodeToASCIIString</a></span>(<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;unicode)</code>
<div class="block">Other characters, which are Unicode chars that are not US-ASCII, and are
 not ISO Control or are not ISO Space chars are not preserved
 and encoded into their hexidecimal value prepended by '%'.</div>
</td>
</tr>
<tr id="i14" class="altColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/jogamp/common/net/Uri.html#equals-java.lang.Object-">equals</a></span>(<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;o)</code></td>
</tr>
<tr id="i15" class="rowColor">
<td class="colFirst"><code><a href="../../../../com/jogamp/common/net/Uri.html" title="class in com.jogamp.common.net">Uri</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/jogamp/common/net/Uri.html#getContainedUri--">getContainedUri</a></span>()</code>
<div class="block">If this instance's <a href="../../../../com/jogamp/common/net/Uri.html#schemeSpecificPart"><code>schemeSpecificPart</code></a> contains a Uri itself, a sub-Uri,
 return <a href="../../../../com/jogamp/common/net/Uri.html#schemeSpecificPart"><code>schemeSpecificPart</code></a> + <code>#</code> <a href="../../../../com/jogamp/common/net/Uri.html#fragment"><code>fragment</code></a> via it's own new Uri instance.</div>
</td>
</tr>
<tr id="i16" class="altColor">
<td class="colFirst"><code><a href="../../../../com/jogamp/common/net/Uri.html" title="class in com.jogamp.common.net">Uri</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/jogamp/common/net/Uri.html#getDirectory--">getDirectory</a></span>()</code>
<div class="block">Returns this Uri's directory Uri.</div>
</td>
</tr>
<tr id="i17" class="rowColor">
<td class="colFirst"><code><a href="../../../../com/jogamp/common/net/Uri.Encoded.html" title="class in com.jogamp.common.net">Uri.Encoded</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/jogamp/common/net/Uri.html#getEncoded--">getEncoded</a></span>()</code>
<div class="block">Returns the encoded <a href="../../../../com/jogamp/common/net/Uri.html#input"><code>input</code></a>, never <code>null</code>.</div>
</td>
</tr>
<tr id="i18" class="altColor">
<td class="colFirst"><code><a href="../../../../com/jogamp/common/net/Uri.html" title="class in com.jogamp.common.net">Uri</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/jogamp/common/net/Uri.html#getNewQuery-com.jogamp.common.net.Uri.Encoded-">getNewQuery</a></span>(<a href="../../../../com/jogamp/common/net/Uri.Encoded.html" title="class in com.jogamp.common.net">Uri.Encoded</a>&nbsp;newQuery)</code>
<div class="block">Returns a new Uri instance w/ the given new query <code>newQuery</code>.</div>
</td>
</tr>
<tr id="i19" class="rowColor">
<td class="colFirst"><code><a href="../../../../com/jogamp/common/net/Uri.html" title="class in com.jogamp.common.net">Uri</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/jogamp/common/net/Uri.html#getNormalized--">getNormalized</a></span>()</code>
<div class="block"><a href="../../../../com/jogamp/common/util/IOUtil.html#cleanPathString-java.lang.String-"><code>Normalizes</code></a> this Uri's path and return the
 <a href="../../../../com/jogamp/common/util/IOUtil.html#cleanPathString-java.lang.String-"><code>normalized</code></a> form if it differs, otherwise <code>this</code> instance.</div>
</td>
</tr>
<tr id="i20" class="altColor">
<td class="colFirst"><code><a href="../../../../com/jogamp/common/net/Uri.html" title="class in com.jogamp.common.net">Uri</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/jogamp/common/net/Uri.html#getParent--">getParent</a></span>()</code>
<div class="block">Returns this Uri's parent directory Uri..</div>
</td>
</tr>
<tr id="i21" class="rowColor">
<td class="colFirst"><code><a href="../../../../com/jogamp/common/net/Uri.html" title="class in com.jogamp.common.net">Uri</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/jogamp/common/net/Uri.html#getRelativeOf-com.jogamp.common.net.Uri.Encoded-">getRelativeOf</a></span>(<a href="../../../../com/jogamp/common/net/Uri.Encoded.html" title="class in com.jogamp.common.net">Uri.Encoded</a>&nbsp;appendPath)</code>
<div class="block">Returns a new Uri appending the given <code>appendPath</code>
 to this instance's <a href="../../../../com/jogamp/common/net/Uri.html#getDirectory--"><code>directory</code></a>.</div>
</td>
</tr>
<tr id="i22" class="altColor">
<td class="colFirst"><code>int</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/jogamp/common/net/Uri.html#hashCode--">hashCode</a></span>()</code></td>
</tr>
<tr id="i23" class="rowColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/jogamp/common/net/Uri.html#isFileScheme--">isFileScheme</a></span>()</code>
<div class="block">Returns true, if this instance is a <code>file</code> <code>scheme</code>, otherwise false.</div>
</td>
</tr>
<tr id="i24" class="altColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/jogamp/common/net/Uri.html#isJarScheme--">isJarScheme</a></span>()</code>
<div class="block">Returns true, if this instance is a <code>jar</code> <code>scheme</code>, otherwise false.</div>
</td>
</tr>
<tr id="i25" class="rowColor">
<td class="colFirst"><code><a href="../../../../com/jogamp/common/net/Uri.ASCIIEncoded.html" title="class in com.jogamp.common.net">Uri.ASCIIEncoded</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/jogamp/common/net/Uri.html#toASCIIString--">toASCIIString</a></span>()</code>
<div class="block">Returns the encoded <a href="../../../../com/jogamp/common/net/Uri.html#input"><code>input</code></a> encoded in US-ASCII.</div>
</td>
</tr>
<tr id="i26" class="altColor">
<td class="colFirst"><code><a href="http://docs.oracle.com/javase/6/docs/api/java/io/File.html?is-external=true" title="class or interface in java.io">File</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/jogamp/common/net/Uri.html#toFile--">toFile</a></span>()</code>
<div class="block">If this instance <a href="../../../../com/jogamp/common/net/Uri.html#isFileScheme--"><code>is a file scheme</code></a>,
 implementation decodes <i>[ "//"+<a href="../../../../com/jogamp/common/net/Uri.html#authority"><code>authority</code></a> ] + <a href="../../../../com/jogamp/common/net/Uri.html#path"><code>path</code></a></i>,<br>
 then it processes the result if <a href="http://docs.oracle.com/javase/6/docs/api/java/io/File.html?is-external=true#separatorChar" title="class or interface in java.io"><code>File.separatorChar</code></a> <code> == '\\'</code>
 as follows:
 
   slash -> backslash
   drop a starting single backslash, preserving windows UNC
 
 and returns the resulting new <a href="http://docs.oracle.com/javase/6/docs/api/java/io/File.html?is-external=true" title="class or interface in java.io"><code>File</code></a> instance.</div>
</td>
</tr>
<tr id="i27" class="rowColor">
<td class="colFirst"><code><a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/jogamp/common/net/Uri.html#toString--">toString</a></span>()</code>
<div class="block">Returns the encoded <a href="../../../../com/jogamp/common/net/Uri.html#input"><code>input</code></a> as String, never <code>null</code>, same as <a href="../../../../com/jogamp/common/net/Uri.html#getEncoded--"><code>getEncoded()</code></a>.</div>
</td>
</tr>
<tr id="i28" class="altColor">
<td class="colFirst"><code><a href="http://docs.oracle.com/javase/6/docs/api/java/net/URI.html?is-external=true" title="class or interface in java.net">URI</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/jogamp/common/net/Uri.html#toURI--">toURI</a></span>()</code>
<div class="block">Returns a new <code>URI</code> instance using the encoded <a href="../../../../com/jogamp/common/net/Uri.html#input"><code>input</code></a> string, <code>new URI(uri.input)</code>,
 i.e.</div>
</td>
</tr>
<tr id="i29" class="rowColor">
<td class="colFirst"><code><a href="http://docs.oracle.com/javase/6/docs/api/java/net/URI.html?is-external=true" title="class or interface in java.net">URI</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/jogamp/common/net/Uri.html#toURIReencoded--">toURIReencoded</a></span>()</code>
<div class="block">Returns a new <code>URI</code> instance based upon this instance.</div>
</td>
</tr>
<tr id="i30" class="altColor">
<td class="colFirst"><code><a href="http://docs.oracle.com/javase/6/docs/api/java/net/URL.html?is-external=true" title="class or interface in java.net">URL</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/jogamp/common/net/Uri.html#toURL--">toURL</a></span>()</code>
<div class="block">Returns a new <code>URL</code> instance using the encoded <a href="../../../../com/jogamp/common/net/Uri.html#input"><code>input</code></a> string, <code>new URL(uri.input)</code>,
 i.e.</div>
</td>
</tr>
<tr id="i31" class="rowColor">
<td class="colFirst"><code>static <a href="../../../../com/jogamp/common/net/Uri.html" title="class in com.jogamp.common.net">Uri</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/jogamp/common/net/Uri.html#valueOf-java.io.File-">valueOf</a></span>(<a href="http://docs.oracle.com/javase/6/docs/api/java/io/File.html?is-external=true" title="class or interface in java.io">File</a>&nbsp;file)</code>
<div class="block">Creates a new Uri instance using the given File instance.</div>
</td>
</tr>
<tr id="i32" class="altColor">
<td class="colFirst"><code>static <a href="../../../../com/jogamp/common/net/Uri.html" title="class in com.jogamp.common.net">Uri</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/jogamp/common/net/Uri.html#valueOf-java.net.URI-">valueOf</a></span>(<a href="http://docs.oracle.com/javase/6/docs/api/java/net/URI.html?is-external=true" title="class or interface in java.net">URI</a>&nbsp;uri)</code>
<div class="block">Creates a new Uri instance using the given URI instance.</div>
</td>
</tr>
<tr id="i33" class="rowColor">
<td class="colFirst"><code>static <a href="../../../../com/jogamp/common/net/Uri.html" title="class in com.jogamp.common.net">Uri</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/jogamp/common/net/Uri.html#valueOf-java.net.URL-">valueOf</a></span>(<a href="http://docs.oracle.com/javase/6/docs/api/java/net/URL.html?is-external=true" title="class or interface in java.net">URL</a>&nbsp;url)</code>
<div class="block">Creates a new Uri instance using the given URL instance,
 convenient wrapper for <a href="../../../../com/jogamp/common/net/Uri.html#valueOf-java.net.URI-"><code>valueOf(URI)</code></a> and <code>URL#toURI()</code>.</div>
</td>
</tr>
<tr id="i34" class="altColor">
<td class="colFirst"><code>static <a href="../../../../com/jogamp/common/net/Uri.html" title="class in com.jogamp.common.net">Uri</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/jogamp/common/net/Uri.html#valueOfFilepath-java.lang.String-">valueOfFilepath</a></span>(<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;path)</code>
<div class="block">Creates a new Uri instance using the given file-path argument.</div>
</td>
</tr>
</table>
<ul class="blockList">
<li class="blockList"><a name="methods.inherited.from.class.java.lang.Object">
<!--   -->
</a>
<h3>Methods inherited from class&nbsp;java.lang.<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a></h3>
<code><a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#clone--" title="class or interface in java.lang">clone</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#finalize--" title="class or interface in java.lang">finalize</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#getClass--" title="class or interface in java.lang">getClass</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#notify--" title="class or interface in java.lang">notify</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#notifyAll--" title="class or interface in java.lang">notifyAll</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#wait--" title="class or interface in java.lang">wait</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#wait-long-" title="class or interface in java.lang">wait</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#wait-long-int-" title="class or interface in java.lang">wait</a></code></li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
<div class="details">
<ul class="blockList">
<li class="blockList">
<!-- ============ FIELD DETAIL =========== -->
<ul class="blockList">
<li class="blockList"><a name="field.detail">
<!--   -->
</a>
<h3>Field Detail</h3>
<a name="UNRESERVED">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>UNRESERVED</h4>
<pre>public static final&nbsp;<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> UNRESERVED</pre>
<div class="block">RFC 3986 section 2.3 Unreserved Characters (January 2005)
 <p>
 "_-.~" + <code>alphanum</code>
 </p></div>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../../constant-values.html#com.jogamp.common.net.Uri.UNRESERVED">Constant Field Values</a></dd>
</dl>
</li>
</ul>
<a name="RESERVED">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>RESERVED</h4>
<pre>public static final&nbsp;<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> RESERVED</pre>
<div class="block">RFC 3986 section 2.2 Reserved Characters (January 2005)
 <p>
 ",;:$&+=!*\'()@/?#[]" + <code>alphanum</code>
 </p></div>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../../constant-values.html#com.jogamp.common.net.Uri.RESERVED">Constant Field Values</a></dd>
</dl>
</li>
</ul>
<a name="RESERVED_2">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>RESERVED_2</h4>
<pre>public static final&nbsp;<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> RESERVED_2</pre>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../../constant-values.html#com.jogamp.common.net.Uri.RESERVED_2">Constant Field Values</a></dd>
</dl>
</li>
</ul>
<a name="USERINFO_LEGAL">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>USERINFO_LEGAL</h4>
<pre>public static final&nbsp;<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> USERINFO_LEGAL</pre>
<div class="block">Valid charset for RFC 2396 <code>authority</code>'s <code>user-info</code>,
 additional to legal <code>alphanum</code> characters.
 <p>
 "_-.~,;:$&+=" + <code>alphanum</code>
 </p></div>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../../constant-values.html#com.jogamp.common.net.Uri.USERINFO_LEGAL">Constant Field Values</a></dd>
</dl>
</li>
</ul>
<a name="AUTHORITY_LEGAL">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>AUTHORITY_LEGAL</h4>
<pre>public static final&nbsp;<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> AUTHORITY_LEGAL</pre>
<div class="block">Valid charset for RFC 2396 <code>authority</code>,
 additional to legal <code>alphanum</code> characters.
 <p>
 "@[]_-.~,;:$&+=" + <code>alphanum</code>
 </p></div>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../../constant-values.html#com.jogamp.common.net.Uri.AUTHORITY_LEGAL">Constant Field Values</a></dd>
</dl>
</li>
</ul>
<a name="PATH_LEGAL">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>PATH_LEGAL</h4>
<pre>public static final&nbsp;<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> PATH_LEGAL</pre>
<div class="block">Valid charset for RFC 2396 <code>path</code>,
 additional to legal <code>alphanum</code> characters.
 <p>
 "/!_-.~" + <code>alphanum</code>
 </p></div>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../../constant-values.html#com.jogamp.common.net.Uri.PATH_LEGAL">Constant Field Values</a></dd>
</dl>
</li>
</ul>
<a name="QUERY_LEGAL">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>QUERY_LEGAL</h4>
<pre>public static final&nbsp;<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> QUERY_LEGAL</pre>
<div class="block">Valid charset for RFC 2396 <code>query</code>,
 additional to legal <code>alphanum</code> characters.
 <p>
 "_-.~,;:$&+=!*\'()@/?[]\\\"" + <code>alphanum</code>
 </p></div>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../../constant-values.html#com.jogamp.common.net.Uri.QUERY_LEGAL">Constant Field Values</a></dd>
</dl>
</li>
</ul>
<a name="SSP_LEGAL">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>SSP_LEGAL</h4>
<pre>public static final&nbsp;<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> SSP_LEGAL</pre>
<div class="block">Valid charset for RFC 2396 <code>scheme-specific-part</code>,
 additional to legal <code>alphanum</code> characters.
 <p>
 "_-.~,;:$&+=!*\'()@/?[]\\\"" + <code>alphanum</code>
 </p></div>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../../constant-values.html#com.jogamp.common.net.Uri.SSP_LEGAL">Constant Field Values</a></dd>
</dl>
</li>
</ul>
<a name="FRAG_LEGAL">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>FRAG_LEGAL</h4>
<pre>public static final&nbsp;<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> FRAG_LEGAL</pre>
<div class="block">Valid charset for RFC 2396 <code>fragment</code>,
 additional to legal <code>alphanum</code> characters.
 <p>
 "_-.~,;:$&+=!*\'()@/?#[]" + <code>alphanum</code>
 </p></div>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../../constant-values.html#com.jogamp.common.net.Uri.FRAG_LEGAL">Constant Field Values</a></dd>
</dl>
</li>
</ul>
<a name="SCHEME_SEPARATOR">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>SCHEME_SEPARATOR</h4>
<pre>public static final&nbsp;char SCHEME_SEPARATOR</pre>
<div class="block">58</div>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../../constant-values.html#com.jogamp.common.net.Uri.SCHEME_SEPARATOR">Constant Field Values</a></dd>
</dl>
</li>
</ul>
<a name="QUERY_SEPARATOR">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>QUERY_SEPARATOR</h4>
<pre>public static final&nbsp;char QUERY_SEPARATOR</pre>
<div class="block">63</div>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../../constant-values.html#com.jogamp.common.net.Uri.QUERY_SEPARATOR">Constant Field Values</a></dd>
</dl>
</li>
</ul>
<a name="FRAGMENT_SEPARATOR">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>FRAGMENT_SEPARATOR</h4>
<pre>public static final&nbsp;char FRAGMENT_SEPARATOR</pre>
<div class="block">35</div>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../../constant-values.html#com.jogamp.common.net.Uri.FRAGMENT_SEPARATOR">Constant Field Values</a></dd>
</dl>
</li>
</ul>
<a name="FILE_SCHEME">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>FILE_SCHEME</h4>
<pre>public static final&nbsp;<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> FILE_SCHEME</pre>
<div class="block">"file"</div>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../../constant-values.html#com.jogamp.common.net.Uri.FILE_SCHEME">Constant Field Values</a></dd>
</dl>
</li>
</ul>
<a name="HTTP_SCHEME">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>HTTP_SCHEME</h4>
<pre>public static final&nbsp;<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> HTTP_SCHEME</pre>
<div class="block">"http"</div>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../../constant-values.html#com.jogamp.common.net.Uri.HTTP_SCHEME">Constant Field Values</a></dd>
</dl>
</li>
</ul>
<a name="HTTPS_SCHEME">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>HTTPS_SCHEME</h4>
<pre>public static final&nbsp;<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> HTTPS_SCHEME</pre>
<div class="block">"https"</div>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../../constant-values.html#com.jogamp.common.net.Uri.HTTPS_SCHEME">Constant Field Values</a></dd>
</dl>
</li>
</ul>
<a name="JAR_SCHEME">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>JAR_SCHEME</h4>
<pre>public static final&nbsp;<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> JAR_SCHEME</pre>
<div class="block">"jar"</div>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../../constant-values.html#com.jogamp.common.net.Uri.JAR_SCHEME">Constant Field Values</a></dd>
</dl>
</li>
</ul>
<a name="JAR_SCHEME_SEPARATOR">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>JAR_SCHEME_SEPARATOR</h4>
<pre>public static final&nbsp;char JAR_SCHEME_SEPARATOR</pre>
<div class="block">A JAR sub-protocol is separated from the JAR entry w/ this separator 33. Even if no class is specified '!/' must follow!.</div>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../../constant-values.html#com.jogamp.common.net.Uri.JAR_SCHEME_SEPARATOR">Constant Field Values</a></dd>
</dl>
</li>
</ul>
<a name="input">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>input</h4>
<pre>public final&nbsp;<a href="../../../../com/jogamp/common/net/Uri.Encoded.html" title="class in com.jogamp.common.net">Uri.Encoded</a> input</pre>
<div class="block">Encoded input string used at construction, never <code>null</code>.</div>
</li>
</ul>
<a name="scheme">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>scheme</h4>
<pre>public final&nbsp;<a href="../../../../com/jogamp/common/net/Uri.Encoded.html" title="class in com.jogamp.common.net">Uri.Encoded</a> scheme</pre>
<div class="block">Encoded <code>scheme</code>, <code>null</code> if undefined.</div>
</li>
</ul>
<a name="schemeSpecificPart">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>schemeSpecificPart</h4>
<pre>public final&nbsp;<a href="../../../../com/jogamp/common/net/Uri.Encoded.html" title="class in com.jogamp.common.net">Uri.Encoded</a> schemeSpecificPart</pre>
<div class="block">Encoded <code>scheme-specific-part</code>, never <code>null</code>.</div>
</li>
</ul>
<a name="path">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>path</h4>
<pre>public final&nbsp;<a href="../../../../com/jogamp/common/net/Uri.Encoded.html" title="class in com.jogamp.common.net">Uri.Encoded</a> path</pre>
<div class="block">Encoded <code>path</code> part of <code>scheme-specific-part</code>, never <code>null</code>.</div>
</li>
</ul>
<a name="hasAuthority">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>hasAuthority</h4>
<pre>public final&nbsp;boolean hasAuthority</pre>
<div class="block">Indicating whether <code>authority</code> part is defined or not.</div>
</li>
</ul>
<a name="authority">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>authority</h4>
<pre>public final&nbsp;<a href="../../../../com/jogamp/common/net/Uri.Encoded.html" title="class in com.jogamp.common.net">Uri.Encoded</a> authority</pre>
<div class="block">Encoded <code>authority</code> part of <code>scheme-specific-part</code>, <code>null</code> if undefined.</div>
</li>
</ul>
<a name="userInfo">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>userInfo</h4>
<pre>public final&nbsp;<a href="../../../../com/jogamp/common/net/Uri.Encoded.html" title="class in com.jogamp.common.net">Uri.Encoded</a> userInfo</pre>
<div class="block">Encoded <code>userinfo</code> part of <code>authority</code> and <code>scheme-specific-part</code>, <code>null</code> if undefined.</div>
</li>
</ul>
<a name="host">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>host</h4>
<pre>public final&nbsp;<a href="../../../../com/jogamp/common/net/Uri.Encoded.html" title="class in com.jogamp.common.net">Uri.Encoded</a> host</pre>
<div class="block">Encoded <code>host</code> part of <code>authority</code> and <code>scheme-specific-part</code>, <code>null</code> if undefined.</div>
</li>
</ul>
<a name="port">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>port</h4>
<pre>public final&nbsp;int port</pre>
<div class="block">Encoded <code>port</code> part of <code>authority</code> and <code>scheme-specific-part</code>, <code>-1</code> if undefined.</div>
</li>
</ul>
<a name="query">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>query</h4>
<pre>public final&nbsp;<a href="../../../../com/jogamp/common/net/Uri.Encoded.html" title="class in com.jogamp.common.net">Uri.Encoded</a> query</pre>
<div class="block">Encoded <code>query</code> part of <code>scheme-specific-part</code>, <code>null</code> if undefined.</div>
</li>
</ul>
<a name="fragment">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>fragment</h4>
<pre>public final&nbsp;<a href="../../../../com/jogamp/common/net/Uri.Encoded.html" title="class in com.jogamp.common.net">Uri.Encoded</a> fragment</pre>
<div class="block">Encoded <code>fragment</code>, <code>null</code> if undefined.</div>
</li>
</ul>
<a name="absolute">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>absolute</h4>
<pre>public final&nbsp;boolean absolute</pre>
<div class="block">Indicating whether this Uri is absolute, i.e. has a <code>scheme</code> and hence an absolute <code>scheme-specific-part</code>.</div>
</li>
</ul>
<a name="opaque">
<!--   -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>opaque</h4>
<pre>public final&nbsp;boolean opaque</pre>
<div class="block">Indicating whether this Uri is opaque, i.e. non-hierarchical <code>scheme-specific-part</code>.
 <p>
 An opaque Uri has no <code>scheme-specific-part</code> being parsed,
 i.e. <code>path</code>, <code>query</code> and <code>authority</code> are <code>null</code>.
 </p></div>
</li>
</ul>
</li>
</ul>
<!-- ========= CONSTRUCTOR DETAIL ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor.detail">
<!--   -->
</a>
<h3>Constructor Detail</h3>
<a name="Uri-com.jogamp.common.net.Uri.Encoded-">
<!--   -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>Uri</h4>
<pre>public&nbsp;Uri(<a href="../../../../com/jogamp/common/net/Uri.Encoded.html" title="class in com.jogamp.common.net">Uri.Encoded</a>&nbsp;uri)
    throws <a href="http://docs.oracle.com/javase/6/docs/api/java/net/URISyntaxException.html?is-external=true" title="class or interface in java.net">URISyntaxException</a></pre>
<div class="block">Creates a new Uri instance according to the given encoded string <code>uri</code>.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>uri</code> - the RFC3986 encoded RFC2396 Uri representation to be parsed into a Uri object</dd>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code><a href="http://docs.oracle.com/javase/6/docs/api/java/net/URISyntaxException.html?is-external=true" title="class or interface in java.net">URISyntaxException</a></code> - if the given string <code>uri</code> doesn't fit to the
             specification RFC2396 and RFC3986 or could not be parsed correctly.</dd>
</dl>
</li>
</ul>
</li>
</ul>
<!-- ============ METHOD DETAIL ========== -->
<ul class="blockList">
<li class="blockList"><a name="method.detail">
<!--   -->
</a>
<h3>Method Detail</h3>
<a name="encode-java.lang.String-java.lang.String-">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>encode</h4>
<pre>public static&nbsp;<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;encode(<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;vanilla,
                            <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;legal)</pre>
<div class="block">All characters are encoded into their hexadecimal value prepended by '%', except:
 <ol>
   <li>letters ('a'..'z', 'A'..'Z')</li>
   <li>numbers ('0'..'9')</li>
   <li>characters in the legal-set parameter</li>
   <li> others (unicode characters that are not in
        US-ASCII set, and are not ISO Control or are not ISO Space characters)</li>
 </ol>
 <p>
 Use <a href="../../../../com/jogamp/common/net/Uri.html#encodeToASCIIString-java.lang.String-"><code>encodeToASCIIString(String)</code></a> for US-ASCII encoding.
 </p>
 <p>
 Consider using <code>Encoded#Encoded(String, String)</code> in APIs
 to distinguish encoded from unencoded data by type.
 </p></div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>vanilla</code> - the string to be encoded</dd>
<dd><code>legal</code> - extended character set, allowed to be preserved in the vanilla string</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>java.lang.String the converted string</dd>
</dl>
</li>
</ul>
<a name="encodeToASCIIString-java.lang.String-">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>encodeToASCIIString</h4>
<pre>public static&nbsp;<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;encodeToASCIIString(<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;unicode)</pre>
<div class="block">Other characters, which are Unicode chars that are not US-ASCII, and are
 not ISO Control or are not ISO Space chars are not preserved
 and encoded into their hexidecimal value prepended by '%'.
 <p>
 For example: Euro currency symbol -> "%E2%82%AC".
 </p>
 <p>
 Consider using <code>ASCIIEncoded#ASCIIEncoded(String)</code> in APIs
 to distinguish encoded from unencoded data by type.
 </p></div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>unicode</code> - string to be converted</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>java.lang.String the converted string</dd>
</dl>
</li>
</ul>
<a name="decode-com.jogamp.common.net.Uri.Encoded-">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>decode</h4>
<pre>public static&nbsp;<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;decode(<a href="../../../../com/jogamp/common/net/Uri.Encoded.html" title="class in com.jogamp.common.net">Uri.Encoded</a>&nbsp;encoded)</pre>
<div class="block">Safe <a href="../../../../com/jogamp/common/net/Uri.Encoded.html#decode--"><code>Uri.Encoded.decode()</code></a> call on optional <code>encoded</code> instance.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>encoded</code> - <a href="../../../../com/jogamp/common/net/Uri.Encoded.html" title="class in com.jogamp.common.net"><code>Uri.Encoded</code></a> instance to be decoded, may be <code>null</code>.</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>the <a href="../../../../com/jogamp/common/net/Uri.Encoded.html#decode--"><code>decoded</code></a> String or <code>null</code> if <code>encoded</code> was <code>null</code>.</dd>
</dl>
</li>
</ul>
<a name="decode-java.lang.String-">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>decode</h4>
<pre>public static&nbsp;<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;decode(<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;encoded)</pre>
<div class="block">Decodes the string argument which is assumed to be encoded in the <code>x-www-form-urlencoded</code> MIME content type using the UTF-8 encoding scheme.
 <p>
'%' and two following hex digit characters are converted to the
 equivalent byte value. All other characters are passed through
 unmodified.
 </p>
 <p>
 e.g. "A%20B%20C %24%25" -> "A B C $%"
 </p></div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>encoded</code> - The encoded string.</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>java.lang.String The decoded version.</dd>
</dl>
</li>
</ul>
<a name="create-java.lang.String-java.lang.String-java.lang.String-">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>create</h4>
<pre>public static&nbsp;<a href="../../../../com/jogamp/common/net/Uri.html" title="class in com.jogamp.common.net">Uri</a>&nbsp;create(<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;scheme,
                         <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;ssp,
                         <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;fragment)
                  throws <a href="http://docs.oracle.com/javase/6/docs/api/java/net/URISyntaxException.html?is-external=true" title="class or interface in java.net">URISyntaxException</a></pre>
<div class="block">Creates a new Uri instance using the given unencoded arguments.
 <p>
 This constructor first creates a temporary Uri string from the given unencoded components. This
 string will be parsed later on to create the Uri instance.
 </p>
 <p>
 <code>[scheme:]scheme-specific-part[#fragment]</code>
 </p>
 <p>
 <code>host</code> and <code>port</code> <i>may</i> be undefined or invalid within <code>scheme-specific-part</code>.
 </p></div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>scheme</code> - the unencoded scheme part of the Uri.</dd>
<dd><code>ssp</code> - the unencoded scheme-specific-part of the Uri.</dd>
<dd><code>fragment</code> - the unencoded fragment part of the Uri.</dd>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code><a href="http://docs.oracle.com/javase/6/docs/api/java/net/URISyntaxException.html?is-external=true" title="class or interface in java.net">URISyntaxException</a></code> - if the temporary created string doesn't fit to the
             specification RFC2396 or could not be parsed correctly.</dd>
</dl>
</li>
</ul>
<a name="create-com.jogamp.common.net.Uri.Encoded-com.jogamp.common.net.Uri.Encoded-com.jogamp.common.net.Uri.Encoded-">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>create</h4>
<pre>public static&nbsp;<a href="../../../../com/jogamp/common/net/Uri.html" title="class in com.jogamp.common.net">Uri</a>&nbsp;create(<a href="../../../../com/jogamp/common/net/Uri.Encoded.html" title="class in com.jogamp.common.net">Uri.Encoded</a>&nbsp;scheme,
                         <a href="../../../../com/jogamp/common/net/Uri.Encoded.html" title="class in com.jogamp.common.net">Uri.Encoded</a>&nbsp;ssp,
                         <a href="../../../../com/jogamp/common/net/Uri.Encoded.html" title="class in com.jogamp.common.net">Uri.Encoded</a>&nbsp;fragment)
                  throws <a href="http://docs.oracle.com/javase/6/docs/api/java/net/URISyntaxException.html?is-external=true" title="class or interface in java.net">URISyntaxException</a></pre>
<div class="block">Creates a new Uri instance using the given encoded arguments.
 <p>
 This constructor first creates a temporary Uri string from the given encoded components. This
 string will be parsed later on to create the Uri instance.
 </p>
 <p>
 The given encoded components are taken as-is, i.e. no re-encoding will be performed!
 However, Uri parsing will re-evaluate encoding of the resulting components.
 </p>
 <p>
 <code>[scheme:]scheme-specific-part[#fragment]</code>
 </p>
 <p>
 <code>host</code> and <code>port</code> <i>may</i> be undefined or invalid within <code>scheme-specific-part</code>.
 </p></div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>scheme</code> - the encoded scheme part of the Uri.</dd>
<dd><code>ssp</code> - the encoded scheme-specific-part of the Uri.</dd>
<dd><code>fragment</code> - the encoded fragment part of the Uri.</dd>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code><a href="http://docs.oracle.com/javase/6/docs/api/java/net/URISyntaxException.html?is-external=true" title="class or interface in java.net">URISyntaxException</a></code> - if the temporary created string doesn't fit to the
             specification RFC2396 or could not be parsed correctly.</dd>
</dl>
</li>
</ul>
<a name="create-java.lang.String-java.lang.String-java.lang.String-int-java.lang.String-java.lang.String-java.lang.String-">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>create</h4>
<pre>public static&nbsp;<a href="../../../../com/jogamp/common/net/Uri.html" title="class in com.jogamp.common.net">Uri</a>&nbsp;create(<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;scheme,
                         <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;userinfo,
                         <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;host,
                         int&nbsp;port,
                         <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;path,
                         <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;query,
                         <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;fragment)
                  throws <a href="http://docs.oracle.com/javase/6/docs/api/java/net/URISyntaxException.html?is-external=true" title="class or interface in java.net">URISyntaxException</a></pre>
<div class="block">Creates a new Uri instance using the given unencoded arguments.
 <p>
 This constructor first creates a temporary Uri string from the given unencoded components. This
 string will be parsed later on to create the Uri instance.
 </p>
 <p>
 <code>[scheme:][user-info@]host[:port][path][?query][#fragment]</code>
 </p>
 <p>
 <code>host</code> and <code>port</code> <i>must</i> be defined and valid, if any <code>authority</code> components are defined,
 i.e. <code>user-info</code>, <code>host</code> or <code>port</code>.
 </p></div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>scheme</code> - the unencoded scheme part of the Uri.</dd>
<dd><code>userinfo</code> - the unencoded user information of the Uri for authentication and authorization, <code>null</code> for undefined.</dd>
<dd><code>host</code> - the unencoded host name of the Uri, <code>null</code> for undefined.</dd>
<dd><code>port</code> - the port number of the Uri, -1 for undefined.</dd>
<dd><code>path</code> - the unencoded path to the resource on the host.</dd>
<dd><code>query</code> - the unencoded query part of the Uri to specify parameters for the resource.</dd>
<dd><code>fragment</code> - the unencoded fragment part of the Uri.</dd>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code><a href="http://docs.oracle.com/javase/6/docs/api/java/net/URISyntaxException.html?is-external=true" title="class or interface in java.net">URISyntaxException</a></code> - if the temporary created string doesn't fit to the
             specification RFC2396 or could not be parsed correctly.</dd>
</dl>
</li>
</ul>
<a name="create-com.jogamp.common.net.Uri.Encoded-com.jogamp.common.net.Uri.Encoded-com.jogamp.common.net.Uri.Encoded-int-com.jogamp.common.net.Uri.Encoded-com.jogamp.common.net.Uri.Encoded-com.jogamp.common.net.Uri.Encoded-">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>create</h4>
<pre>public static&nbsp;<a href="../../../../com/jogamp/common/net/Uri.html" title="class in com.jogamp.common.net">Uri</a>&nbsp;create(<a href="../../../../com/jogamp/common/net/Uri.Encoded.html" title="class in com.jogamp.common.net">Uri.Encoded</a>&nbsp;scheme,
                         <a href="../../../../com/jogamp/common/net/Uri.Encoded.html" title="class in com.jogamp.common.net">Uri.Encoded</a>&nbsp;userinfo,
                         <a href="../../../../com/jogamp/common/net/Uri.Encoded.html" title="class in com.jogamp.common.net">Uri.Encoded</a>&nbsp;host,
                         int&nbsp;port,
                         <a href="../../../../com/jogamp/common/net/Uri.Encoded.html" title="class in com.jogamp.common.net">Uri.Encoded</a>&nbsp;path,
                         <a href="../../../../com/jogamp/common/net/Uri.Encoded.html" title="class in com.jogamp.common.net">Uri.Encoded</a>&nbsp;query,
                         <a href="../../../../com/jogamp/common/net/Uri.Encoded.html" title="class in com.jogamp.common.net">Uri.Encoded</a>&nbsp;fragment)
                  throws <a href="http://docs.oracle.com/javase/6/docs/api/java/net/URISyntaxException.html?is-external=true" title="class or interface in java.net">URISyntaxException</a></pre>
<div class="block">Creates a new Uri instance using the given encoded arguments.
 <p>
 This constructor first creates a temporary Uri string from the given encoded components. This
 string will be parsed later on to create the Uri instance.
 </p>
 <p>
 The given encoded components are taken as-is, i.e. no re-encoding will be performed!
 However, Uri parsing will re-evaluate encoding of the resulting components.
 </p>
 <p>
 <code>[scheme:][user-info@]host[:port][path][?query][#fragment]</code>
 </p>
 <p>
 <code>host</code> and <code>port</code> <i>must</i> be defined and valid, if any <code>authority</code> components are defined,
 i.e. <code>user-info</code>, <code>host</code> or <code>port</code>.
 </p></div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>scheme</code> - the encoded scheme part of the Uri.</dd>
<dd><code>userinfo</code> - the encoded user information of the Uri for authentication and authorization, <code>null</code> for undefined.</dd>
<dd><code>host</code> - the encoded host name of the Uri, <code>null</code> for undefined.</dd>
<dd><code>port</code> - the port number of the Uri, -1 for undefined.</dd>
<dd><code>path</code> - the encoded path to the resource on the host.</dd>
<dd><code>query</code> - the encoded query part of the Uri to specify parameters for the resource.</dd>
<dd><code>fragment</code> - the encoded fragment part of the Uri.</dd>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code><a href="http://docs.oracle.com/javase/6/docs/api/java/net/URISyntaxException.html?is-external=true" title="class or interface in java.net">URISyntaxException</a></code> - if the temporary created string doesn't fit to the
             specification RFC2396 or could not be parsed correctly.</dd>
</dl>
</li>
</ul>
<a name="create-java.lang.String-java.lang.String-java.lang.String-java.lang.String-">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>create</h4>
<pre>public static&nbsp;<a href="../../../../com/jogamp/common/net/Uri.html" title="class in com.jogamp.common.net">Uri</a>&nbsp;create(<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;scheme,
                         <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;host,
                         <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;path,
                         <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;fragment)
                  throws <a href="http://docs.oracle.com/javase/6/docs/api/java/net/URISyntaxException.html?is-external=true" title="class or interface in java.net">URISyntaxException</a></pre>
<div class="block">Creates a new Uri instance using the given unencoded arguments.
 <p>
 This constructor first creates a temporary Uri string from the given unencoded components. This
 string will be parsed later on to create the Uri instance.
 </p>
 <p>
 <code>[scheme:]host[path][#fragment]</code>
 </p>
 <p>
 <code>host</code> <i>must</i> be valid, if defined.
 </p></div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>scheme</code> - the unencoded scheme part of the Uri.</dd>
<dd><code>host</code> - the unencoded host name of the Uri.</dd>
<dd><code>path</code> - the unencoded path to the resource on the host.</dd>
<dd><code>fragment</code> - the unencoded fragment part of the Uri.</dd>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code><a href="http://docs.oracle.com/javase/6/docs/api/java/net/URISyntaxException.html?is-external=true" title="class or interface in java.net">URISyntaxException</a></code> - if the temporary created string doesn't fit to the
             specification RFC2396 or could not be parsed correctly.</dd>
</dl>
</li>
</ul>
<a name="create-com.jogamp.common.net.Uri.Encoded-com.jogamp.common.net.Uri.Encoded-com.jogamp.common.net.Uri.Encoded-com.jogamp.common.net.Uri.Encoded-">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>create</h4>
<pre>public static&nbsp;<a href="../../../../com/jogamp/common/net/Uri.html" title="class in com.jogamp.common.net">Uri</a>&nbsp;create(<a href="../../../../com/jogamp/common/net/Uri.Encoded.html" title="class in com.jogamp.common.net">Uri.Encoded</a>&nbsp;scheme,
                         <a href="../../../../com/jogamp/common/net/Uri.Encoded.html" title="class in com.jogamp.common.net">Uri.Encoded</a>&nbsp;host,
                         <a href="../../../../com/jogamp/common/net/Uri.Encoded.html" title="class in com.jogamp.common.net">Uri.Encoded</a>&nbsp;path,
                         <a href="../../../../com/jogamp/common/net/Uri.Encoded.html" title="class in com.jogamp.common.net">Uri.Encoded</a>&nbsp;fragment)
                  throws <a href="http://docs.oracle.com/javase/6/docs/api/java/net/URISyntaxException.html?is-external=true" title="class or interface in java.net">URISyntaxException</a></pre>
<div class="block">Creates a new Uri instance using the given encoded arguments.
 <p>
 This constructor first creates a temporary Uri string from the given encoded components. This
 string will be parsed later on to create the Uri instance.
 </p>
 <p>
 The given encoded components are taken as-is, i.e. no re-encoding will be performed!
 However, Uri parsing will re-evaluate encoding of the resulting components.
 </p>
 <p>
 <code>[scheme:]host[path][#fragment]</code>
 </p>
 <p>
 <code>host</code> <i>must</i> be valid, if defined.
 </p></div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>scheme</code> - the encoded scheme part of the Uri.</dd>
<dd><code>host</code> - the encoded host name of the Uri.</dd>
<dd><code>path</code> - the encoded path to the resource on the host.</dd>
<dd><code>fragment</code> - the encoded fragment part of the Uri.</dd>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code><a href="http://docs.oracle.com/javase/6/docs/api/java/net/URISyntaxException.html?is-external=true" title="class or interface in java.net">URISyntaxException</a></code> - if the temporary created string doesn't fit to the
             specification RFC2396 or could not be parsed correctly.</dd>
</dl>
</li>
</ul>
<a name="create-java.lang.String-java.lang.String-java.lang.String-java.lang.String-java.lang.String-">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>create</h4>
<pre>public static&nbsp;<a href="../../../../com/jogamp/common/net/Uri.html" title="class in com.jogamp.common.net">Uri</a>&nbsp;create(<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;scheme,
                         <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;authority,
                         <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;path,
                         <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;query,
                         <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;fragment)
                  throws <a href="http://docs.oracle.com/javase/6/docs/api/java/net/URISyntaxException.html?is-external=true" title="class or interface in java.net">URISyntaxException</a></pre>
<div class="block">Creates a new Uri instance using the given unencoded arguments.
 <p>
 This constructor first creates a temporary Uri string from the given unencoded components. This
 string will be parsed later on to create the Uri instance.
 </p>
 <p>
 <code>[scheme:][//authority][path][?query][#fragment]</code>
 </p>
 <p>
 <code>host</code> and <code>port</code> <i>may</i> be undefined or invalid, in the optional <code>authority</code>.
 </p></div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>scheme</code> - the unencoded scheme part of the Uri.</dd>
<dd><code>authority</code> - the unencoded authority part of the Uri.</dd>
<dd><code>path</code> - the unencoded path to the resource on the host.</dd>
<dd><code>query</code> - the unencoded query part of the Uri to specify parameters for the resource.</dd>
<dd><code>fragment</code> - the unencoded fragment part of the Uri.</dd>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code><a href="http://docs.oracle.com/javase/6/docs/api/java/net/URISyntaxException.html?is-external=true" title="class or interface in java.net">URISyntaxException</a></code> - if the temporary created string doesn't fit to the
             specification RFC2396 or could not be parsed correctly.</dd>
</dl>
</li>
</ul>
<a name="create-com.jogamp.common.net.Uri.Encoded-com.jogamp.common.net.Uri.Encoded-com.jogamp.common.net.Uri.Encoded-com.jogamp.common.net.Uri.Encoded-com.jogamp.common.net.Uri.Encoded-">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>create</h4>
<pre>public static&nbsp;<a href="../../../../com/jogamp/common/net/Uri.html" title="class in com.jogamp.common.net">Uri</a>&nbsp;create(<a href="../../../../com/jogamp/common/net/Uri.Encoded.html" title="class in com.jogamp.common.net">Uri.Encoded</a>&nbsp;scheme,
                         <a href="../../../../com/jogamp/common/net/Uri.Encoded.html" title="class in com.jogamp.common.net">Uri.Encoded</a>&nbsp;authority,
                         <a href="../../../../com/jogamp/common/net/Uri.Encoded.html" title="class in com.jogamp.common.net">Uri.Encoded</a>&nbsp;path,
                         <a href="../../../../com/jogamp/common/net/Uri.Encoded.html" title="class in com.jogamp.common.net">Uri.Encoded</a>&nbsp;query,
                         <a href="../../../../com/jogamp/common/net/Uri.Encoded.html" title="class in com.jogamp.common.net">Uri.Encoded</a>&nbsp;fragment)
                  throws <a href="http://docs.oracle.com/javase/6/docs/api/java/net/URISyntaxException.html?is-external=true" title="class or interface in java.net">URISyntaxException</a></pre>
<div class="block">Creates a new Uri instance using the given encoded arguments.
 <p>
 This constructor first creates a temporary Uri string from the given encoded encoded components. This
 string will be parsed later on to create the Uri instance.
 </p>
 <p>
 The given encoded components are taken as-is, i.e. no re-encoding will be performed!
 However, Uri parsing will re-evaluate encoding of the resulting components.
 </p>
 <p>
 <code>[scheme:][//authority][path][?query][#fragment]</code>
 </p>
 <p>
 <code>host</code> and <code>port</code> <i>may</i> be undefined or invalid, in the optional <code>authority</code>.
 </p></div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>scheme</code> - the encoded scheme part of the Uri.</dd>
<dd><code>authority</code> - the encoded authority part of the Uri.</dd>
<dd><code>path</code> - the encoded path to the resource on the host.</dd>
<dd><code>query</code> - the encoded query part of the Uri to specify parameters for the resource.</dd>
<dd><code>fragment</code> - the encoded fragment part of the Uri.</dd>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code><a href="http://docs.oracle.com/javase/6/docs/api/java/net/URISyntaxException.html?is-external=true" title="class or interface in java.net">URISyntaxException</a></code> - if the temporary created string doesn't fit to the
             specification RFC2396 or could not be parsed correctly.</dd>
</dl>
</li>
</ul>
<a name="cast-java.lang.String-">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>cast</h4>
<pre>public static&nbsp;<a href="../../../../com/jogamp/common/net/Uri.html" title="class in com.jogamp.common.net">Uri</a>&nbsp;cast(<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;encodedUri)
                throws <a href="http://docs.oracle.com/javase/6/docs/api/java/net/URISyntaxException.html?is-external=true" title="class or interface in java.net">URISyntaxException</a></pre>
<div class="block">Casts the given encoded String to a <a href="../../../../com/jogamp/common/net/Uri.Encoded.html#cast-java.lang.String-"><code>new Encoded instance</code></a>
 used to create the resulting Uri instance via <a href="../../../../com/jogamp/common/net/Uri.html#Uri-com.jogamp.common.net.Uri.Encoded-"><code>Uri(Encoded)</code></a>.
 <p>
 No encoding will be performed on the given <code>encodedUri</code>, use with care.
 </p></div>
<dl>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code><a href="http://docs.oracle.com/javase/6/docs/api/java/net/URISyntaxException.html?is-external=true" title="class or interface in java.net">URISyntaxException</a></code></dd>
</dl>
</li>
</ul>
<a name="valueOfFilepath-java.lang.String-">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>valueOfFilepath</h4>
<pre>public static&nbsp;<a href="../../../../com/jogamp/common/net/Uri.html" title="class in com.jogamp.common.net">Uri</a>&nbsp;valueOfFilepath(<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;path)
                           throws <a href="http://docs.oracle.com/javase/6/docs/api/java/net/URISyntaxException.html?is-external=true" title="class or interface in java.net">URISyntaxException</a></pre>
<div class="block">Creates a new Uri instance using the given file-path argument.
 <p>
 This constructor first creates a temporary Uri string from the given components. This
 string will be parsed later on to create the Uri instance.
 </p>
 <p>
 <code>file:path</code>
 </p></div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>path</code> - the unencoded path of the <code>file</code> <code>schema</code>.</dd>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code><a href="http://docs.oracle.com/javase/6/docs/api/java/net/URISyntaxException.html?is-external=true" title="class or interface in java.net">URISyntaxException</a></code> - if the temporary created string doesn't fit to the
             specification RFC2396 or could not be parsed correctly.</dd>
</dl>
</li>
</ul>
<a name="valueOf-java.io.File-">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>valueOf</h4>
<pre>public static&nbsp;<a href="../../../../com/jogamp/common/net/Uri.html" title="class in com.jogamp.common.net">Uri</a>&nbsp;valueOf(<a href="http://docs.oracle.com/javase/6/docs/api/java/io/File.html?is-external=true" title="class or interface in java.io">File</a>&nbsp;file)
                   throws <a href="http://docs.oracle.com/javase/6/docs/api/java/net/URISyntaxException.html?is-external=true" title="class or interface in java.net">URISyntaxException</a></pre>
<div class="block">Creates a new Uri instance using the given File instance.
 <p>
 This constructor first creates a temporary Uri string from the given components. This
 string will be parsed later on to create the Uri instance.
 </p>
 <p>
 <code>file:path</code>
 </p></div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>file</code> - using <a href="../../../../com/jogamp/common/util/IOUtil.html#slashify-java.lang.String-boolean-boolean-"><code>slashified</code></a> <a href="http://docs.oracle.com/javase/6/docs/api/java/io/File.html?is-external=true#getAbsolutePath--" title="class or interface in java.io"><code>absolute-path</code></a>
             for the path of the <code>file</code> <code>schema</code>, utilizing <a href="../../../../com/jogamp/common/net/Uri.html#valueOfFilepath-java.lang.String-"><code>valueOfFilepath(String)</code></a>.</dd>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code><a href="http://docs.oracle.com/javase/6/docs/api/java/net/URISyntaxException.html?is-external=true" title="class or interface in java.net">URISyntaxException</a></code> - if the temporary created string doesn't fit to the
             specification RFC2396 or could not be parsed correctly.</dd>
</dl>
</li>
</ul>
<a name="valueOf-java.net.URI-">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>valueOf</h4>
<pre>public static&nbsp;<a href="../../../../com/jogamp/common/net/Uri.html" title="class in com.jogamp.common.net">Uri</a>&nbsp;valueOf(<a href="http://docs.oracle.com/javase/6/docs/api/java/net/URI.html?is-external=true" title="class or interface in java.net">URI</a>&nbsp;uri)
                   throws <a href="http://docs.oracle.com/javase/6/docs/api/java/net/URISyntaxException.html?is-external=true" title="class or interface in java.net">URISyntaxException</a></pre>
<div class="block">Creates a new Uri instance using the given URI instance.
 <p>
 Re-encoding will be performed if the given URI is <code>not opaque</code>.
 </p>
 <p>
 See <a href="../../../../com/jogamp/common/net/Uri.html#PARSE_HINT_FIX_PATH"><code>PARSE_HINT_FIX_PATH</code></a> for issues of injecting opaque URLs.
 </p></div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>uri</code> - A given URI instance</dd>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code><a href="http://docs.oracle.com/javase/6/docs/api/java/net/URISyntaxException.html?is-external=true" title="class or interface in java.net">URISyntaxException</a></code> - if the temporary created string doesn't fit to the
             specification RFC2396 or could not be parsed correctly.</dd>
</dl>
</li>
</ul>
<a name="valueOf-java.net.URL-">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>valueOf</h4>
<pre>public static&nbsp;<a href="../../../../com/jogamp/common/net/Uri.html" title="class in com.jogamp.common.net">Uri</a>&nbsp;valueOf(<a href="http://docs.oracle.com/javase/6/docs/api/java/net/URL.html?is-external=true" title="class or interface in java.net">URL</a>&nbsp;url)
                   throws <a href="http://docs.oracle.com/javase/6/docs/api/java/net/URISyntaxException.html?is-external=true" title="class or interface in java.net">URISyntaxException</a></pre>
<div class="block">Creates a new Uri instance using the given URL instance,
 convenient wrapper for <a href="../../../../com/jogamp/common/net/Uri.html#valueOf-java.net.URI-"><code>valueOf(URI)</code></a> and <code>URL#toURI()</code>.
 <p>
 Re-encoding will be performed if the given URL is <code>not opaque</code>, see <a href="../../../../com/jogamp/common/net/Uri.html#valueOf-java.net.URI-"><code>valueOf(URI)</code></a>.
 </p>
 <p>
 See <a href="../../../../com/jogamp/common/net/Uri.html#PARSE_HINT_FIX_PATH"><code>PARSE_HINT_FIX_PATH</code></a> for issues of injecting opaque URLs.
 </p></div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>url</code> - A given URL instance</dd>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code><a href="http://docs.oracle.com/javase/6/docs/api/java/net/URISyntaxException.html?is-external=true" title="class or interface in java.net">URISyntaxException</a></code> - if the temporary created string doesn't fit to the
             specification RFC2396 or could not be parsed correctly.</dd>
</dl>
</li>
</ul>
<a name="isFileScheme--">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>isFileScheme</h4>
<pre>public final&nbsp;boolean&nbsp;isFileScheme()</pre>
<div class="block">Returns true, if this instance is a <code>file</code> <code>scheme</code>, otherwise false.</div>
</li>
</ul>
<a name="isJarScheme--">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>isJarScheme</h4>
<pre>public final&nbsp;boolean&nbsp;isJarScheme()</pre>
<div class="block">Returns true, if this instance is a <code>jar</code> <code>scheme</code>, otherwise false.</div>
<dl>
<dt><span class="simpleTagLabel">Since:</span></dt>
<dd>2.3.2</dd>
</dl>
</li>
</ul>
<a name="getEncoded--">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getEncoded</h4>
<pre>public final&nbsp;<a href="../../../../com/jogamp/common/net/Uri.Encoded.html" title="class in com.jogamp.common.net">Uri.Encoded</a>&nbsp;getEncoded()</pre>
<div class="block">Returns the encoded <a href="../../../../com/jogamp/common/net/Uri.html#input"><code>input</code></a>, never <code>null</code>.</div>
</li>
</ul>
<a name="toString--">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>toString</h4>
<pre>public final&nbsp;<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;toString()</pre>
<div class="block">Returns the encoded <a href="../../../../com/jogamp/common/net/Uri.html#input"><code>input</code></a> as String, never <code>null</code>, same as <a href="../../../../com/jogamp/common/net/Uri.html#getEncoded--"><code>getEncoded()</code></a>.</div>
<dl>
<dt><span class="overrideSpecifyLabel">Overrides:</span></dt>
<dd><code><a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#toString--" title="class or interface in java.lang">toString</a></code>&nbsp;in class&nbsp;<code><a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a></code></dd>
</dl>
</li>
</ul>
<a name="toASCIIString--">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>toASCIIString</h4>
<pre>public&nbsp;<a href="../../../../com/jogamp/common/net/Uri.ASCIIEncoded.html" title="class in com.jogamp.common.net">Uri.ASCIIEncoded</a>&nbsp;toASCIIString()</pre>
<div class="block">Returns the encoded <a href="../../../../com/jogamp/common/net/Uri.html#input"><code>input</code></a> encoded in US-ASCII.</div>
</li>
</ul>
<a name="toURI--">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>toURI</h4>
<pre>public final&nbsp;<a href="http://docs.oracle.com/javase/6/docs/api/java/net/URI.html?is-external=true" title="class or interface in java.net">URI</a>&nbsp;toURI()</pre>
<div class="block">Returns a new <code>URI</code> instance using the encoded <a href="../../../../com/jogamp/common/net/Uri.html#input"><code>input</code></a> string, <code>new URI(uri.input)</code>,
 i.e. no re-encoding will be performed.</div>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><code>#toURIReencoded(boolean)</code>, 
<a href="../../../../com/jogamp/common/net/Uri.html#valueOf-java.net.URI-"><code>valueOf(URI)</code></a></dd>
</dl>
</li>
</ul>
<a name="toURIReencoded--">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>toURIReencoded</h4>
<pre>public final&nbsp;<a href="http://docs.oracle.com/javase/6/docs/api/java/net/URI.html?is-external=true" title="class or interface in java.net">URI</a>&nbsp;toURIReencoded()
                         throws <a href="http://docs.oracle.com/javase/6/docs/api/java/net/URISyntaxException.html?is-external=true" title="class or interface in java.net">URISyntaxException</a></pre>
<div class="block">Returns a new <code>URI</code> instance based upon this instance.
 <p>
 All Uri parts of this instance will be decoded
 and encoded by the URI constructor, i.e. re-encoding will be performed.
 </p></div>
<dl>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code><a href="http://docs.oracle.com/javase/6/docs/api/java/net/URISyntaxException.html?is-external=true" title="class or interface in java.net">URISyntaxException</a></code> - if the given string <code>uri</code> doesn't fit to the
             specification RFC2396 or could not be parsed correctly.</dd>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../../com/jogamp/common/net/Uri.html#toURI--"><code>toURI()</code></a>, 
<a href="../../../../com/jogamp/common/net/Uri.html#valueOf-java.net.URI-"><code>valueOf(URI)</code></a></dd>
</dl>
</li>
</ul>
<a name="toURL--">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>toURL</h4>
<pre>public final&nbsp;<a href="http://docs.oracle.com/javase/6/docs/api/java/net/URL.html?is-external=true" title="class or interface in java.net">URL</a>&nbsp;toURL()
                throws <a href="http://docs.oracle.com/javase/6/docs/api/java/net/MalformedURLException.html?is-external=true" title="class or interface in java.net">MalformedURLException</a></pre>
<div class="block">Returns a new <code>URL</code> instance using the encoded <a href="../../../../com/jogamp/common/net/Uri.html#input"><code>input</code></a> string, <code>new URL(uri.input)</code>,
 i.e. no re-encoding will be performed.</div>
<dl>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code><a href="http://docs.oracle.com/javase/6/docs/api/java/net/MalformedURLException.html?is-external=true" title="class or interface in java.net">MalformedURLException</a></code> - if an error occurs while creating the URL or no protocol
             handler could be found.</dd>
</dl>
</li>
</ul>
<a name="toFile--">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>toFile</h4>
<pre>public final&nbsp;<a href="http://docs.oracle.com/javase/6/docs/api/java/io/File.html?is-external=true" title="class or interface in java.io">File</a>&nbsp;toFile()</pre>
<div class="block">If this instance <a href="../../../../com/jogamp/common/net/Uri.html#isFileScheme--"><code>is a file scheme</code></a>,
 implementation decodes <i>[ "//"+<a href="../../../../com/jogamp/common/net/Uri.html#authority"><code>authority</code></a> ] + <a href="../../../../com/jogamp/common/net/Uri.html#path"><code>path</code></a></i>,<br>
 then it processes the result if <a href="http://docs.oracle.com/javase/6/docs/api/java/io/File.html?is-external=true#separatorChar" title="class or interface in java.io"><code>File.separatorChar</code></a> <code> == '\\'</code>
 as follows:
 <ul>
   <li>slash -> backslash</li>
   <li>drop a starting single backslash, preserving windows UNC</li>
 </ul>
 and returns the resulting new <a href="http://docs.oracle.com/javase/6/docs/api/java/io/File.html?is-external=true" title="class or interface in java.io"><code>File</code></a> instance.
 <p>
 Otherwise implementation returns <code>null</code>.
 </p></div>
</li>
</ul>
<a name="getContainedUri--">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getContainedUri</h4>
<pre>public final&nbsp;<a href="../../../../com/jogamp/common/net/Uri.html" title="class in com.jogamp.common.net">Uri</a>&nbsp;getContainedUri()
                          throws <a href="http://docs.oracle.com/javase/6/docs/api/java/net/URISyntaxException.html?is-external=true" title="class or interface in java.net">URISyntaxException</a></pre>
<div class="block">If this instance's <a href="../../../../com/jogamp/common/net/Uri.html#schemeSpecificPart"><code>schemeSpecificPart</code></a> contains a Uri itself, a sub-Uri,
 return <a href="../../../../com/jogamp/common/net/Uri.html#schemeSpecificPart"><code>schemeSpecificPart</code></a> + <code>#</code> <a href="../../../../com/jogamp/common/net/Uri.html#fragment"><code>fragment</code></a> via it's own new Uri instance.
 <p>
 In case this Uri is a <code>jar-scheme</code>, the <code>query</code> is omitted,
 since it shall be invalid for <code>jar-schemes</code> anyway.
 </p>
 <p>
 Otherwise method returns <code>null</code>.
 </p>
 <pre>
 Example 1:
     This instance: <code>jar:<i>scheme2</i>:/some/path/gluegen-rt.jar!/com/jogamp/common/GlueGenVersion.class</code>
     Returned Uri:  <code><i>scheme2</i>:/some/path/gluegen-rt.jar</code>

 Example 2:
     This instance: <code>jar:<i>scheme2</i>:/some/path/gluegen-rt.jar!/com/jogamp/common/GlueGenVersion.class?lala=01#fragment</code>
     Returned Uri:  <code><i>scheme2</i>:/some/path/gluegen-rt.jar#fragment</code>

 Example 3:
     This instance: <code>scheme1:<i>scheme2</i>:/some/path/gluegen-rt.jar!/?lala=01#fragment</code>
     Returned Uri:  <code><i>scheme2</i>:/some/path/gluegen-rt.jar?lala=01#fragment</code>
 </pre></div>
<dl>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code><a href="http://docs.oracle.com/javase/6/docs/api/java/net/URISyntaxException.html?is-external=true" title="class or interface in java.net">URISyntaxException</a></code> - if this Uri is a container Uri and does not comply with the container spec, i.e. a JAR Uri</dd>
</dl>
</li>
</ul>
<a name="getNormalized--">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getNormalized</h4>
<pre>public final&nbsp;<a href="../../../../com/jogamp/common/net/Uri.html" title="class in com.jogamp.common.net">Uri</a>&nbsp;getNormalized()</pre>
<div class="block"><a href="../../../../com/jogamp/common/util/IOUtil.html#cleanPathString-java.lang.String-"><code>Normalizes</code></a> this Uri's path and return the
 <a href="../../../../com/jogamp/common/util/IOUtil.html#cleanPathString-java.lang.String-"><code>normalized</code></a> form if it differs, otherwise <code>this</code> instance.
 <p>
 <pre>
 Example-1:
     This instance  : <code>jar:http://some/path/../gluegen-rt.jar!/com/Test.class?arg=1#frag</code>
     Normalized     : <code>jar:http://some/gluegen-rt.jar!/com/Test.class?arg=1#frag</code>

 Example-2:
     This instance  : <code>http://some/path/../gluegen-rt.jar?arg=1#frag</code>
     Normalized     : <code>http://some/gluegen-rt.jar?arg=1#frag</code>
 </pre>
 </p></div>
</li>
</ul>
<a name="getDirectory--">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getDirectory</h4>
<pre>public&nbsp;<a href="../../../../com/jogamp/common/net/Uri.html" title="class in com.jogamp.common.net">Uri</a>&nbsp;getDirectory()</pre>
<div class="block">Returns this Uri's directory Uri.
 <p>
 This Uri path will be <a href="../../../../com/jogamp/common/util/IOUtil.html#cleanPathString-java.lang.String-"><code>normalized</code></a> before returning the directory.
 </p>
 <p>
 If this Uri's directory cannot be found, or already denotes a directory, method returns <code>this</code> instance.
 </p>
 <p>
 <pre>
 Example-1:
     this-uri: http:/some/path/gluegen-rt.jar?arg=1#frag
     result:   http:/some/path/?arg=1#frag

 Example-2:
     this-uri: file:/some/path/
     result:   file:/some/path/

 Example-3:
     this-uri: file:/some/path/lala/lili/../../hello.txt
     result:   file:/some/path/
 </pre>
 </p></div>
<dl>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code><a href="http://docs.oracle.com/javase/6/docs/api/java/net/URISyntaxException.html?is-external=true" title="class or interface in java.net">URISyntaxException</a></code> - if the new string <code>uri</code> doesn't fit to the
                            specification RFC2396 and RFC3986 or could not be parsed correctly.</dd>
</dl>
</li>
</ul>
<a name="getParent--">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getParent</h4>
<pre>public final&nbsp;<a href="../../../../com/jogamp/common/net/Uri.html" title="class in com.jogamp.common.net">Uri</a>&nbsp;getParent()</pre>
<div class="block">Returns this Uri's parent directory Uri..
 <p>
 This Uri path will be <a href="../../../../com/jogamp/common/util/IOUtil.html#cleanPathString-java.lang.String-"><code>normalized</code></a> before traversing up one directory.
 </p>
 <p>
 If a parent folder cannot be found, method returns <code>null</code>.
 </p>
 <p>
 <pre>
 Example-1:
     This instance  : <code>jar:http://some/path/gluegen-rt.jar!/com/Test.class?arg=1#frag</code>
     Returned Uri #1: <code>jar:http://some/path/gluegen-rt.jar!/com/?arg=1#frag</code>
     Returned Uri #2: <code>jar:http://some/path/gluegen-rt.jar!/?arg=1#frag</code>
     Returned Uri #3: <code>null</code>

 Example-2:
     This instance  : <code>http://some/path/gluegen-rt.jar?arg=1#frag</code>
     Returned Uri #1: <code>http://some/path/?arg=1#frag</code>
     Returned Uri #2: <code>http://some/?arg=1#frag</code>
     Returned Uri #2: <code>null</code>

 Example-3:
     This instance  : <code>http://some/path/../gluegen-rt.jar?arg=1#frag</code>
     Returned Uri #1: <code>http://some/?arg=1#frag</code>
     Returned Uri #2: <code>null</code>
 </pre>
 </p></div>
</li>
</ul>
<a name="getRelativeOf-com.jogamp.common.net.Uri.Encoded-">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getRelativeOf</h4>
<pre>public&nbsp;<a href="../../../../com/jogamp/common/net/Uri.html" title="class in com.jogamp.common.net">Uri</a>&nbsp;getRelativeOf(<a href="../../../../com/jogamp/common/net/Uri.Encoded.html" title="class in com.jogamp.common.net">Uri.Encoded</a>&nbsp;appendPath)
                  throws <a href="http://docs.oracle.com/javase/6/docs/api/java/net/URISyntaxException.html?is-external=true" title="class or interface in java.net">URISyntaxException</a></pre>
<div class="block">Returns a new Uri appending the given <code>appendPath</code>
 to this instance's <a href="../../../../com/jogamp/common/net/Uri.html#getDirectory--"><code>directory</code></a>.
 <p>
 If <code>appendPath</code> is empty, method behaves like <a href="../../../../com/jogamp/common/net/Uri.html#getNormalized--"><code>getNormalized()</code></a>.
 </p>
 <p>
 This resulting path will be <a href="../../../../com/jogamp/common/util/IOUtil.html#cleanPathString-java.lang.String-"><code>normalized</code></a>.
 </p>
 <p>
 <pre>
 Example-1:
     append: null
     this-uri: http:/some/path/gluegen-rt.jar
     result:   http:/some/path/gluegen-rt.jar

 Example-2:
     append: test.txt
     this-uri: file:/some/path/gluegen-rt.jar
     result:   file:/some/path/test.txt

 Example-3:
     append: test.txt
     this-uri: file:/some/path/lala/lili/../../hello.txt
     result:   file:/some/path/test.txt
 </pre>
 </p></div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>appendPath</code> - denotes a relative path to be appended to this Uri's directory</dd>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code><a href="http://docs.oracle.com/javase/6/docs/api/java/net/URISyntaxException.html?is-external=true" title="class or interface in java.net">URISyntaxException</a></code> - if the resulting <code>uri</code> doesn't fit to the
             specification RFC2396 and RFC3986 or could not be parsed correctly.</dd>
</dl>
</li>
</ul>
<a name="concat-com.jogamp.common.net.Uri.Encoded-">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>concat</h4>
<pre>public final&nbsp;<a href="../../../../com/jogamp/common/net/Uri.html" title="class in com.jogamp.common.net">Uri</a>&nbsp;concat(<a href="../../../../com/jogamp/common/net/Uri.Encoded.html" title="class in com.jogamp.common.net">Uri.Encoded</a>&nbsp;suffix)
                 throws <a href="http://docs.oracle.com/javase/6/docs/api/java/net/URISyntaxException.html?is-external=true" title="class or interface in java.net">URISyntaxException</a></pre>
<div class="block">Concatenates the given encoded string to the <a href="../../../../com/jogamp/common/net/Uri.html#getEncoded--"><code>encoded uri</code></a>
 of this instance and returns <a href="../../../../com/jogamp/common/net/Uri.html#Uri-com.jogamp.common.net.Uri.Encoded-"><code>a new Uri instance</code></a> with the result.</div>
<dl>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code><a href="http://docs.oracle.com/javase/6/docs/api/java/net/URISyntaxException.html?is-external=true" title="class or interface in java.net">URISyntaxException</a></code> - if the concatenated string <code>uri</code> doesn't fit to the
             specification RFC2396 and RFC3986 or could not be parsed correctly.</dd>
</dl>
</li>
</ul>
<a name="getNewQuery-com.jogamp.common.net.Uri.Encoded-">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getNewQuery</h4>
<pre>public final&nbsp;<a href="../../../../com/jogamp/common/net/Uri.html" title="class in com.jogamp.common.net">Uri</a>&nbsp;getNewQuery(<a href="../../../../com/jogamp/common/net/Uri.Encoded.html" title="class in com.jogamp.common.net">Uri.Encoded</a>&nbsp;newQuery)
                      throws <a href="http://docs.oracle.com/javase/6/docs/api/java/net/URISyntaxException.html?is-external=true" title="class or interface in java.net">URISyntaxException</a></pre>
<div class="block">Returns a new Uri instance w/ the given new query <code>newQuery</code>.</div>
<dl>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code><a href="http://docs.oracle.com/javase/6/docs/api/java/net/URISyntaxException.html?is-external=true" title="class or interface in java.net">URISyntaxException</a></code> - if this Uri is <a href="../../../../com/jogamp/common/net/Uri.html#opaque"><code>opaque</code></a>
             or if the new string <code>uri</code> doesn't fit to the
             specification RFC2396 and RFC3986 or could not be parsed correctly.</dd>
</dl>
</li>
</ul>
<a name="equals-java.lang.Object-">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>equals</h4>
<pre>public final&nbsp;boolean&nbsp;equals(<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;o)</pre>
<div class="block">
 <p>
 Compares this Uri instance with the given argument <code>o</code> and
 determines if both are equal. Two Uri instances are equal if all single
 parts are identical in their meaning.
 </p></div>
<dl>
<dt><span class="overrideSpecifyLabel">Overrides:</span></dt>
<dd><code><a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#equals-java.lang.Object-" title="class or interface in java.lang">equals</a></code>&nbsp;in class&nbsp;<code><a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a></code></dd>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>o</code> - the Uri this instance has to be compared with.</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd><code>true</code> if both Uri instances point to the same resource,
         <code>false</code> otherwise.</dd>
</dl>
</li>
</ul>
<a name="hashCode--">
<!--   -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>hashCode</h4>
<pre>public final&nbsp;int&nbsp;hashCode()</pre>
<div class="block">
 <p>
 Gets the hashcode value of this Uri instance.
 </p></div>
<dl>
<dt><span class="overrideSpecifyLabel">Overrides:</span></dt>
<dd><code><a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#hashCode--" title="class or interface in java.lang">hashCode</a></code>&nbsp;in class&nbsp;<code><a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a></code></dd>
</dl>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
</div>
<!-- ========= END OF CLASS DATA ========= -->
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar.bottom">
<!--   -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.bottom.firstrow">
<!--   -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-all.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../com/jogamp/common/net/PiggybackURLContext.html" title="interface in com.jogamp.common.net"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
<li><a href="../../../../com/jogamp/common/net/Uri.ASCIIEncoded.html" title="class in com.jogamp.common.net"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?com/jogamp/common/net/Uri.html" target="_top">Frames</a></li>
<li><a href="Uri.html" target="_top">No&nbsp;Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
  allClassesLink = document.getElementById("allclasses_navbar_bottom");
  if(window==top) {
    allClassesLink.style.display = "block";
  }
  else {
    allClassesLink.style.display = "none";
  }
  //-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary:&nbsp;</li>
<li><a href="#nested.class.summary">Nested</a>&nbsp;|&nbsp;</li>
<li><a href="#field.summary">Field</a>&nbsp;|&nbsp;</li>
<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
<li><a href="#method.summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail:&nbsp;</li>
<li><a href="#field.detail">Field</a>&nbsp;|&nbsp;</li>
<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
<li><a href="#method.detail">Method</a></li>
</ul>
</div>
<a name="skip.navbar.bottom">
<!--   -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
</body>
</html>