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
|
#
# Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved.
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# This code is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License version 2 only, as
# published by the Free Software Foundation. Oracle designates this
# particular file as subject to the "Classpath" exception as provided
# by Oracle in the LICENSE file that accompanied this code.
#
# This code is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
# version 2 for more details (a copy is included in the LICENSE file that
# accompanied this code).
#
# You should have received a copy of the GNU General Public License version
# 2 along with this work; if not, write to the Free Software Foundation,
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
# or visit www.oracle.com if you need additional information or have any
# questions.
#
# ##########################################################
# ### THIS FILE IS AUTOMATICALLY GENERATED. DO NOT EDIT. ###
# ##########################################################
#
class name java/sql/Array
header extends java/lang/Object flags 601 classAnnotations @Ljdk/Profile+Annotation;(value=I2)
method name getBaseTypeName descriptor ()Ljava/lang/String; thrownTypes java/sql/SQLException flags 401
method name getBaseType descriptor ()I thrownTypes java/sql/SQLException flags 401
method name getArray descriptor ()Ljava/lang/Object; thrownTypes java/sql/SQLException flags 401
method name getArray descriptor (Ljava/util/Map;)Ljava/lang/Object; thrownTypes java/sql/SQLException flags 401 signature (Ljava/util/Map<Ljava/lang/String;Ljava/lang/Class<*>;>;)Ljava/lang/Object;
method name getArray descriptor (JI)Ljava/lang/Object; thrownTypes java/sql/SQLException flags 401
method name getArray descriptor (JILjava/util/Map;)Ljava/lang/Object; thrownTypes java/sql/SQLException flags 401 signature (JILjava/util/Map<Ljava/lang/String;Ljava/lang/Class<*>;>;)Ljava/lang/Object;
method name getResultSet descriptor ()Ljava/sql/ResultSet; thrownTypes java/sql/SQLException flags 401
method name getResultSet descriptor (Ljava/util/Map;)Ljava/sql/ResultSet; thrownTypes java/sql/SQLException flags 401 signature (Ljava/util/Map<Ljava/lang/String;Ljava/lang/Class<*>;>;)Ljava/sql/ResultSet;
method name getResultSet descriptor (JI)Ljava/sql/ResultSet; thrownTypes java/sql/SQLException flags 401
method name getResultSet descriptor (JILjava/util/Map;)Ljava/sql/ResultSet; thrownTypes java/sql/SQLException flags 401 signature (JILjava/util/Map<Ljava/lang/String;Ljava/lang/Class<*>;>;)Ljava/sql/ResultSet;
method name free descriptor ()V thrownTypes java/sql/SQLException flags 401
class name java/sql/BatchUpdateException
header extends java/sql/SQLException flags 21 classAnnotations @Ljdk/Profile+Annotation;(value=I2)
method name <init> descriptor (Ljava/lang/String;Ljava/lang/String;I[I)V flags 1
method name <init> descriptor (Ljava/lang/String;Ljava/lang/String;[I)V flags 1
method name <init> descriptor (Ljava/lang/String;[I)V flags 1
method name <init> descriptor ([I)V flags 1
method name <init> descriptor ()V flags 1
method name <init> descriptor (Ljava/lang/Throwable;)V flags 1
method name <init> descriptor ([ILjava/lang/Throwable;)V flags 1
method name <init> descriptor (Ljava/lang/String;[ILjava/lang/Throwable;)V flags 1
method name <init> descriptor (Ljava/lang/String;Ljava/lang/String;[ILjava/lang/Throwable;)V flags 1
method name <init> descriptor (Ljava/lang/String;Ljava/lang/String;I[ILjava/lang/Throwable;)V flags 1
method name getUpdateCounts descriptor ()[I flags 1
method name <init> descriptor (Ljava/lang/String;Ljava/lang/String;I[JLjava/lang/Throwable;)V flags 1
method name getLargeUpdateCounts descriptor ()[J flags 1
class name java/sql/Blob
header extends java/lang/Object flags 601 classAnnotations @Ljdk/Profile+Annotation;(value=I2)
method name length descriptor ()J thrownTypes java/sql/SQLException flags 401
method name getBytes descriptor (JI)[B thrownTypes java/sql/SQLException flags 401
method name getBinaryStream descriptor ()Ljava/io/InputStream; thrownTypes java/sql/SQLException flags 401
method name position descriptor ([BJ)J thrownTypes java/sql/SQLException flags 401
method name position descriptor (Ljava/sql/Blob;J)J thrownTypes java/sql/SQLException flags 401
method name setBytes descriptor (J[B)I thrownTypes java/sql/SQLException flags 401
method name setBytes descriptor (J[BII)I thrownTypes java/sql/SQLException flags 401
method name setBinaryStream descriptor (J)Ljava/io/OutputStream; thrownTypes java/sql/SQLException flags 401
method name truncate descriptor (J)V thrownTypes java/sql/SQLException flags 401
method name free descriptor ()V thrownTypes java/sql/SQLException flags 401
method name getBinaryStream descriptor (JJ)Ljava/io/InputStream; thrownTypes java/sql/SQLException flags 401
class name java/sql/CallableStatement
header extends java/lang/Object implements java/sql/PreparedStatement flags 601 classAnnotations @Ljdk/Profile+Annotation;(value=I2)
method name registerOutParameter descriptor (II)V thrownTypes java/sql/SQLException flags 401
method name registerOutParameter descriptor (III)V thrownTypes java/sql/SQLException flags 401
method name wasNull descriptor ()Z thrownTypes java/sql/SQLException flags 401
method name getString descriptor (I)Ljava/lang/String; thrownTypes java/sql/SQLException flags 401
method name getBoolean descriptor (I)Z thrownTypes java/sql/SQLException flags 401
method name getByte descriptor (I)B thrownTypes java/sql/SQLException flags 401
method name getShort descriptor (I)S thrownTypes java/sql/SQLException flags 401
method name getInt descriptor (I)I thrownTypes java/sql/SQLException flags 401
method name getLong descriptor (I)J thrownTypes java/sql/SQLException flags 401
method name getFloat descriptor (I)F thrownTypes java/sql/SQLException flags 401
method name getDouble descriptor (I)D thrownTypes java/sql/SQLException flags 401
method name getBigDecimal descriptor (II)Ljava/math/BigDecimal; thrownTypes java/sql/SQLException flags 401 deprecated true runtimeAnnotations @Ljava/lang/Deprecated;
method name getBytes descriptor (I)[B thrownTypes java/sql/SQLException flags 401
method name getDate descriptor (I)Ljava/sql/Date; thrownTypes java/sql/SQLException flags 401
method name getTime descriptor (I)Ljava/sql/Time; thrownTypes java/sql/SQLException flags 401
method name getTimestamp descriptor (I)Ljava/sql/Timestamp; thrownTypes java/sql/SQLException flags 401
method name getObject descriptor (I)Ljava/lang/Object; thrownTypes java/sql/SQLException flags 401
method name getBigDecimal descriptor (I)Ljava/math/BigDecimal; thrownTypes java/sql/SQLException flags 401
method name getObject descriptor (ILjava/util/Map;)Ljava/lang/Object; thrownTypes java/sql/SQLException flags 401 signature (ILjava/util/Map<Ljava/lang/String;Ljava/lang/Class<*>;>;)Ljava/lang/Object;
method name getRef descriptor (I)Ljava/sql/Ref; thrownTypes java/sql/SQLException flags 401
method name getBlob descriptor (I)Ljava/sql/Blob; thrownTypes java/sql/SQLException flags 401
method name getClob descriptor (I)Ljava/sql/Clob; thrownTypes java/sql/SQLException flags 401
method name getArray descriptor (I)Ljava/sql/Array; thrownTypes java/sql/SQLException flags 401
method name getDate descriptor (ILjava/util/Calendar;)Ljava/sql/Date; thrownTypes java/sql/SQLException flags 401
method name getTime descriptor (ILjava/util/Calendar;)Ljava/sql/Time; thrownTypes java/sql/SQLException flags 401
method name getTimestamp descriptor (ILjava/util/Calendar;)Ljava/sql/Timestamp; thrownTypes java/sql/SQLException flags 401
method name registerOutParameter descriptor (IILjava/lang/String;)V thrownTypes java/sql/SQLException flags 401
method name registerOutParameter descriptor (Ljava/lang/String;I)V thrownTypes java/sql/SQLException flags 401
method name registerOutParameter descriptor (Ljava/lang/String;II)V thrownTypes java/sql/SQLException flags 401
method name registerOutParameter descriptor (Ljava/lang/String;ILjava/lang/String;)V thrownTypes java/sql/SQLException flags 401
method name getURL descriptor (I)Ljava/net/URL; thrownTypes java/sql/SQLException flags 401
method name setURL descriptor (Ljava/lang/String;Ljava/net/URL;)V thrownTypes java/sql/SQLException flags 401
method name setNull descriptor (Ljava/lang/String;I)V thrownTypes java/sql/SQLException flags 401
method name setBoolean descriptor (Ljava/lang/String;Z)V thrownTypes java/sql/SQLException flags 401
method name setByte descriptor (Ljava/lang/String;B)V thrownTypes java/sql/SQLException flags 401
method name setShort descriptor (Ljava/lang/String;S)V thrownTypes java/sql/SQLException flags 401
method name setInt descriptor (Ljava/lang/String;I)V thrownTypes java/sql/SQLException flags 401
method name setLong descriptor (Ljava/lang/String;J)V thrownTypes java/sql/SQLException flags 401
method name setFloat descriptor (Ljava/lang/String;F)V thrownTypes java/sql/SQLException flags 401
method name setDouble descriptor (Ljava/lang/String;D)V thrownTypes java/sql/SQLException flags 401
method name setBigDecimal descriptor (Ljava/lang/String;Ljava/math/BigDecimal;)V thrownTypes java/sql/SQLException flags 401
method name setString descriptor (Ljava/lang/String;Ljava/lang/String;)V thrownTypes java/sql/SQLException flags 401
method name setBytes descriptor (Ljava/lang/String;[B)V thrownTypes java/sql/SQLException flags 401
method name setDate descriptor (Ljava/lang/String;Ljava/sql/Date;)V thrownTypes java/sql/SQLException flags 401
method name setTime descriptor (Ljava/lang/String;Ljava/sql/Time;)V thrownTypes java/sql/SQLException flags 401
method name setTimestamp descriptor (Ljava/lang/String;Ljava/sql/Timestamp;)V thrownTypes java/sql/SQLException flags 401
method name setAsciiStream descriptor (Ljava/lang/String;Ljava/io/InputStream;I)V thrownTypes java/sql/SQLException flags 401
method name setBinaryStream descriptor (Ljava/lang/String;Ljava/io/InputStream;I)V thrownTypes java/sql/SQLException flags 401
method name setObject descriptor (Ljava/lang/String;Ljava/lang/Object;II)V thrownTypes java/sql/SQLException flags 401
method name setObject descriptor (Ljava/lang/String;Ljava/lang/Object;I)V thrownTypes java/sql/SQLException flags 401
method name setObject descriptor (Ljava/lang/String;Ljava/lang/Object;)V thrownTypes java/sql/SQLException flags 401
method name setCharacterStream descriptor (Ljava/lang/String;Ljava/io/Reader;I)V thrownTypes java/sql/SQLException flags 401
method name setDate descriptor (Ljava/lang/String;Ljava/sql/Date;Ljava/util/Calendar;)V thrownTypes java/sql/SQLException flags 401
method name setTime descriptor (Ljava/lang/String;Ljava/sql/Time;Ljava/util/Calendar;)V thrownTypes java/sql/SQLException flags 401
method name setTimestamp descriptor (Ljava/lang/String;Ljava/sql/Timestamp;Ljava/util/Calendar;)V thrownTypes java/sql/SQLException flags 401
method name setNull descriptor (Ljava/lang/String;ILjava/lang/String;)V thrownTypes java/sql/SQLException flags 401
method name getString descriptor (Ljava/lang/String;)Ljava/lang/String; thrownTypes java/sql/SQLException flags 401
method name getBoolean descriptor (Ljava/lang/String;)Z thrownTypes java/sql/SQLException flags 401
method name getByte descriptor (Ljava/lang/String;)B thrownTypes java/sql/SQLException flags 401
method name getShort descriptor (Ljava/lang/String;)S thrownTypes java/sql/SQLException flags 401
method name getInt descriptor (Ljava/lang/String;)I thrownTypes java/sql/SQLException flags 401
method name getLong descriptor (Ljava/lang/String;)J thrownTypes java/sql/SQLException flags 401
method name getFloat descriptor (Ljava/lang/String;)F thrownTypes java/sql/SQLException flags 401
method name getDouble descriptor (Ljava/lang/String;)D thrownTypes java/sql/SQLException flags 401
method name getBytes descriptor (Ljava/lang/String;)[B thrownTypes java/sql/SQLException flags 401
method name getDate descriptor (Ljava/lang/String;)Ljava/sql/Date; thrownTypes java/sql/SQLException flags 401
method name getTime descriptor (Ljava/lang/String;)Ljava/sql/Time; thrownTypes java/sql/SQLException flags 401
method name getTimestamp descriptor (Ljava/lang/String;)Ljava/sql/Timestamp; thrownTypes java/sql/SQLException flags 401
method name getObject descriptor (Ljava/lang/String;)Ljava/lang/Object; thrownTypes java/sql/SQLException flags 401
method name getBigDecimal descriptor (Ljava/lang/String;)Ljava/math/BigDecimal; thrownTypes java/sql/SQLException flags 401
method name getObject descriptor (Ljava/lang/String;Ljava/util/Map;)Ljava/lang/Object; thrownTypes java/sql/SQLException flags 401 signature (Ljava/lang/String;Ljava/util/Map<Ljava/lang/String;Ljava/lang/Class<*>;>;)Ljava/lang/Object;
method name getRef descriptor (Ljava/lang/String;)Ljava/sql/Ref; thrownTypes java/sql/SQLException flags 401
method name getBlob descriptor (Ljava/lang/String;)Ljava/sql/Blob; thrownTypes java/sql/SQLException flags 401
method name getClob descriptor (Ljava/lang/String;)Ljava/sql/Clob; thrownTypes java/sql/SQLException flags 401
method name getArray descriptor (Ljava/lang/String;)Ljava/sql/Array; thrownTypes java/sql/SQLException flags 401
method name getDate descriptor (Ljava/lang/String;Ljava/util/Calendar;)Ljava/sql/Date; thrownTypes java/sql/SQLException flags 401
method name getTime descriptor (Ljava/lang/String;Ljava/util/Calendar;)Ljava/sql/Time; thrownTypes java/sql/SQLException flags 401
method name getTimestamp descriptor (Ljava/lang/String;Ljava/util/Calendar;)Ljava/sql/Timestamp; thrownTypes java/sql/SQLException flags 401
method name getURL descriptor (Ljava/lang/String;)Ljava/net/URL; thrownTypes java/sql/SQLException flags 401
method name getRowId descriptor (I)Ljava/sql/RowId; thrownTypes java/sql/SQLException flags 401
method name getRowId descriptor (Ljava/lang/String;)Ljava/sql/RowId; thrownTypes java/sql/SQLException flags 401
method name setRowId descriptor (Ljava/lang/String;Ljava/sql/RowId;)V thrownTypes java/sql/SQLException flags 401
method name setNString descriptor (Ljava/lang/String;Ljava/lang/String;)V thrownTypes java/sql/SQLException flags 401
method name setNCharacterStream descriptor (Ljava/lang/String;Ljava/io/Reader;J)V thrownTypes java/sql/SQLException flags 401
method name setNClob descriptor (Ljava/lang/String;Ljava/sql/NClob;)V thrownTypes java/sql/SQLException flags 401
method name setClob descriptor (Ljava/lang/String;Ljava/io/Reader;J)V thrownTypes java/sql/SQLException flags 401
method name setBlob descriptor (Ljava/lang/String;Ljava/io/InputStream;J)V thrownTypes java/sql/SQLException flags 401
method name setNClob descriptor (Ljava/lang/String;Ljava/io/Reader;J)V thrownTypes java/sql/SQLException flags 401
method name getNClob descriptor (I)Ljava/sql/NClob; thrownTypes java/sql/SQLException flags 401
method name getNClob descriptor (Ljava/lang/String;)Ljava/sql/NClob; thrownTypes java/sql/SQLException flags 401
method name setSQLXML descriptor (Ljava/lang/String;Ljava/sql/SQLXML;)V thrownTypes java/sql/SQLException flags 401
method name getSQLXML descriptor (I)Ljava/sql/SQLXML; thrownTypes java/sql/SQLException flags 401
method name getSQLXML descriptor (Ljava/lang/String;)Ljava/sql/SQLXML; thrownTypes java/sql/SQLException flags 401
method name getNString descriptor (I)Ljava/lang/String; thrownTypes java/sql/SQLException flags 401
method name getNString descriptor (Ljava/lang/String;)Ljava/lang/String; thrownTypes java/sql/SQLException flags 401
method name getNCharacterStream descriptor (I)Ljava/io/Reader; thrownTypes java/sql/SQLException flags 401
method name getNCharacterStream descriptor (Ljava/lang/String;)Ljava/io/Reader; thrownTypes java/sql/SQLException flags 401
method name getCharacterStream descriptor (I)Ljava/io/Reader; thrownTypes java/sql/SQLException flags 401
method name getCharacterStream descriptor (Ljava/lang/String;)Ljava/io/Reader; thrownTypes java/sql/SQLException flags 401
method name setBlob descriptor (Ljava/lang/String;Ljava/sql/Blob;)V thrownTypes java/sql/SQLException flags 401
method name setClob descriptor (Ljava/lang/String;Ljava/sql/Clob;)V thrownTypes java/sql/SQLException flags 401
method name setAsciiStream descriptor (Ljava/lang/String;Ljava/io/InputStream;J)V thrownTypes java/sql/SQLException flags 401
method name setBinaryStream descriptor (Ljava/lang/String;Ljava/io/InputStream;J)V thrownTypes java/sql/SQLException flags 401
method name setCharacterStream descriptor (Ljava/lang/String;Ljava/io/Reader;J)V thrownTypes java/sql/SQLException flags 401
method name setAsciiStream descriptor (Ljava/lang/String;Ljava/io/InputStream;)V thrownTypes java/sql/SQLException flags 401
method name setBinaryStream descriptor (Ljava/lang/String;Ljava/io/InputStream;)V thrownTypes java/sql/SQLException flags 401
method name setCharacterStream descriptor (Ljava/lang/String;Ljava/io/Reader;)V thrownTypes java/sql/SQLException flags 401
method name setNCharacterStream descriptor (Ljava/lang/String;Ljava/io/Reader;)V thrownTypes java/sql/SQLException flags 401
method name setClob descriptor (Ljava/lang/String;Ljava/io/Reader;)V thrownTypes java/sql/SQLException flags 401
method name setBlob descriptor (Ljava/lang/String;Ljava/io/InputStream;)V thrownTypes java/sql/SQLException flags 401
method name setNClob descriptor (Ljava/lang/String;Ljava/io/Reader;)V thrownTypes java/sql/SQLException flags 401
method name getObject descriptor (ILjava/lang/Class;)Ljava/lang/Object; thrownTypes java/sql/SQLException flags 401 signature <T:Ljava/lang/Object;>(ILjava/lang/Class<TT;>;)TT;
method name getObject descriptor (Ljava/lang/String;Ljava/lang/Class;)Ljava/lang/Object; thrownTypes java/sql/SQLException flags 401 signature <T:Ljava/lang/Object;>(Ljava/lang/String;Ljava/lang/Class<TT;>;)TT;
method name setObject descriptor (Ljava/lang/String;Ljava/lang/Object;Ljava/sql/SQLType;I)V thrownTypes java/sql/SQLException flags 1
method name setObject descriptor (Ljava/lang/String;Ljava/lang/Object;Ljava/sql/SQLType;)V thrownTypes java/sql/SQLException flags 1
method name registerOutParameter descriptor (ILjava/sql/SQLType;)V thrownTypes java/sql/SQLException flags 1
method name registerOutParameter descriptor (ILjava/sql/SQLType;I)V thrownTypes java/sql/SQLException flags 1
method name registerOutParameter descriptor (ILjava/sql/SQLType;Ljava/lang/String;)V thrownTypes java/sql/SQLException flags 1
method name registerOutParameter descriptor (Ljava/lang/String;Ljava/sql/SQLType;)V thrownTypes java/sql/SQLException flags 1
method name registerOutParameter descriptor (Ljava/lang/String;Ljava/sql/SQLType;I)V thrownTypes java/sql/SQLException flags 1
method name registerOutParameter descriptor (Ljava/lang/String;Ljava/sql/SQLType;Ljava/lang/String;)V thrownTypes java/sql/SQLException flags 1
class name java/sql/ClientInfoStatus
header extends java/lang/Enum flags 4031 signature Ljava/lang/Enum<Ljava/sql/ClientInfoStatus;>; classAnnotations @Ljdk/Profile+Annotation;(value=I2)
field name REASON_UNKNOWN descriptor Ljava/sql/ClientInfoStatus; flags 4019
field name REASON_UNKNOWN_PROPERTY descriptor Ljava/sql/ClientInfoStatus; flags 4019
field name REASON_VALUE_INVALID descriptor Ljava/sql/ClientInfoStatus; flags 4019
field name REASON_VALUE_TRUNCATED descriptor Ljava/sql/ClientInfoStatus; flags 4019
method name values descriptor ()[Ljava/sql/ClientInfoStatus; flags 9
method name valueOf descriptor (Ljava/lang/String;)Ljava/sql/ClientInfoStatus; flags 9
class name java/sql/Clob
header extends java/lang/Object flags 601 classAnnotations @Ljdk/Profile+Annotation;(value=I2)
method name length descriptor ()J thrownTypes java/sql/SQLException flags 401
method name getSubString descriptor (JI)Ljava/lang/String; thrownTypes java/sql/SQLException flags 401
method name getCharacterStream descriptor ()Ljava/io/Reader; thrownTypes java/sql/SQLException flags 401
method name getAsciiStream descriptor ()Ljava/io/InputStream; thrownTypes java/sql/SQLException flags 401
method name position descriptor (Ljava/lang/String;J)J thrownTypes java/sql/SQLException flags 401
method name position descriptor (Ljava/sql/Clob;J)J thrownTypes java/sql/SQLException flags 401
method name setString descriptor (JLjava/lang/String;)I thrownTypes java/sql/SQLException flags 401
method name setString descriptor (JLjava/lang/String;II)I thrownTypes java/sql/SQLException flags 401
method name setAsciiStream descriptor (J)Ljava/io/OutputStream; thrownTypes java/sql/SQLException flags 401
method name setCharacterStream descriptor (J)Ljava/io/Writer; thrownTypes java/sql/SQLException flags 401
method name truncate descriptor (J)V thrownTypes java/sql/SQLException flags 401
method name free descriptor ()V thrownTypes java/sql/SQLException flags 401
method name getCharacterStream descriptor (JJ)Ljava/io/Reader; thrownTypes java/sql/SQLException flags 401
class name java/sql/Connection
header extends java/lang/Object implements java/sql/Wrapper,java/lang/AutoCloseable flags 601 classAnnotations @Ljdk/Profile+Annotation;(value=I2)
field name TRANSACTION_NONE descriptor I constantValue 0 flags 19
field name TRANSACTION_READ_UNCOMMITTED descriptor I constantValue 1 flags 19
field name TRANSACTION_READ_COMMITTED descriptor I constantValue 2 flags 19
field name TRANSACTION_REPEATABLE_READ descriptor I constantValue 4 flags 19
field name TRANSACTION_SERIALIZABLE descriptor I constantValue 8 flags 19
method name createStatement descriptor ()Ljava/sql/Statement; thrownTypes java/sql/SQLException flags 401
method name prepareStatement descriptor (Ljava/lang/String;)Ljava/sql/PreparedStatement; thrownTypes java/sql/SQLException flags 401
method name prepareCall descriptor (Ljava/lang/String;)Ljava/sql/CallableStatement; thrownTypes java/sql/SQLException flags 401
method name nativeSQL descriptor (Ljava/lang/String;)Ljava/lang/String; thrownTypes java/sql/SQLException flags 401
method name setAutoCommit descriptor (Z)V thrownTypes java/sql/SQLException flags 401
method name getAutoCommit descriptor ()Z thrownTypes java/sql/SQLException flags 401
method name commit descriptor ()V thrownTypes java/sql/SQLException flags 401
method name rollback descriptor ()V thrownTypes java/sql/SQLException flags 401
method name close descriptor ()V thrownTypes java/sql/SQLException flags 401
method name isClosed descriptor ()Z thrownTypes java/sql/SQLException flags 401
method name getMetaData descriptor ()Ljava/sql/DatabaseMetaData; thrownTypes java/sql/SQLException flags 401
method name setReadOnly descriptor (Z)V thrownTypes java/sql/SQLException flags 401
method name isReadOnly descriptor ()Z thrownTypes java/sql/SQLException flags 401
method name setCatalog descriptor (Ljava/lang/String;)V thrownTypes java/sql/SQLException flags 401
method name getCatalog descriptor ()Ljava/lang/String; thrownTypes java/sql/SQLException flags 401
method name setTransactionIsolation descriptor (I)V thrownTypes java/sql/SQLException flags 401
method name getTransactionIsolation descriptor ()I thrownTypes java/sql/SQLException flags 401
method name getWarnings descriptor ()Ljava/sql/SQLWarning; thrownTypes java/sql/SQLException flags 401
method name clearWarnings descriptor ()V thrownTypes java/sql/SQLException flags 401
method name createStatement descriptor (II)Ljava/sql/Statement; thrownTypes java/sql/SQLException flags 401
method name prepareStatement descriptor (Ljava/lang/String;II)Ljava/sql/PreparedStatement; thrownTypes java/sql/SQLException flags 401
method name prepareCall descriptor (Ljava/lang/String;II)Ljava/sql/CallableStatement; thrownTypes java/sql/SQLException flags 401
method name getTypeMap descriptor ()Ljava/util/Map; thrownTypes java/sql/SQLException flags 401 signature ()Ljava/util/Map<Ljava/lang/String;Ljava/lang/Class<*>;>;
method name setTypeMap descriptor (Ljava/util/Map;)V thrownTypes java/sql/SQLException flags 401 signature (Ljava/util/Map<Ljava/lang/String;Ljava/lang/Class<*>;>;)V
method name setHoldability descriptor (I)V thrownTypes java/sql/SQLException flags 401
method name getHoldability descriptor ()I thrownTypes java/sql/SQLException flags 401
method name setSavepoint descriptor ()Ljava/sql/Savepoint; thrownTypes java/sql/SQLException flags 401
method name setSavepoint descriptor (Ljava/lang/String;)Ljava/sql/Savepoint; thrownTypes java/sql/SQLException flags 401
method name rollback descriptor (Ljava/sql/Savepoint;)V thrownTypes java/sql/SQLException flags 401
method name releaseSavepoint descriptor (Ljava/sql/Savepoint;)V thrownTypes java/sql/SQLException flags 401
method name createStatement descriptor (III)Ljava/sql/Statement; thrownTypes java/sql/SQLException flags 401
method name prepareStatement descriptor (Ljava/lang/String;III)Ljava/sql/PreparedStatement; thrownTypes java/sql/SQLException flags 401
method name prepareCall descriptor (Ljava/lang/String;III)Ljava/sql/CallableStatement; thrownTypes java/sql/SQLException flags 401
method name prepareStatement descriptor (Ljava/lang/String;I)Ljava/sql/PreparedStatement; thrownTypes java/sql/SQLException flags 401
method name prepareStatement descriptor (Ljava/lang/String;[I)Ljava/sql/PreparedStatement; thrownTypes java/sql/SQLException flags 401
method name prepareStatement descriptor (Ljava/lang/String;[Ljava/lang/String;)Ljava/sql/PreparedStatement; thrownTypes java/sql/SQLException flags 401
method name createClob descriptor ()Ljava/sql/Clob; thrownTypes java/sql/SQLException flags 401
method name createBlob descriptor ()Ljava/sql/Blob; thrownTypes java/sql/SQLException flags 401
method name createNClob descriptor ()Ljava/sql/NClob; thrownTypes java/sql/SQLException flags 401
method name createSQLXML descriptor ()Ljava/sql/SQLXML; thrownTypes java/sql/SQLException flags 401
method name isValid descriptor (I)Z thrownTypes java/sql/SQLException flags 401
method name setClientInfo descriptor (Ljava/lang/String;Ljava/lang/String;)V thrownTypes java/sql/SQLClientInfoException flags 401
method name setClientInfo descriptor (Ljava/util/Properties;)V thrownTypes java/sql/SQLClientInfoException flags 401
method name getClientInfo descriptor (Ljava/lang/String;)Ljava/lang/String; thrownTypes java/sql/SQLException flags 401
method name getClientInfo descriptor ()Ljava/util/Properties; thrownTypes java/sql/SQLException flags 401
method name createArrayOf descriptor (Ljava/lang/String;[Ljava/lang/Object;)Ljava/sql/Array; thrownTypes java/sql/SQLException flags 401
method name createStruct descriptor (Ljava/lang/String;[Ljava/lang/Object;)Ljava/sql/Struct; thrownTypes java/sql/SQLException flags 401
method name setSchema descriptor (Ljava/lang/String;)V thrownTypes java/sql/SQLException flags 401
method name getSchema descriptor ()Ljava/lang/String; thrownTypes java/sql/SQLException flags 401
method name abort descriptor (Ljava/util/concurrent/Executor;)V thrownTypes java/sql/SQLException flags 401
method name setNetworkTimeout descriptor (Ljava/util/concurrent/Executor;I)V thrownTypes java/sql/SQLException flags 401
method name getNetworkTimeout descriptor ()I thrownTypes java/sql/SQLException flags 401
class name java/sql/DataTruncation
header extends java/sql/SQLWarning flags 21 classAnnotations @Ljdk/Profile+Annotation;(value=I2)
method name <init> descriptor (IZZII)V flags 1
method name <init> descriptor (IZZIILjava/lang/Throwable;)V flags 1
method name getIndex descriptor ()I flags 1
method name getParameter descriptor ()Z flags 1
method name getRead descriptor ()Z flags 1
method name getDataSize descriptor ()I flags 1
method name getTransferSize descriptor ()I flags 1
class name java/sql/DatabaseMetaData
header extends java/lang/Object implements java/sql/Wrapper flags 601 classAnnotations @Ljdk/Profile+Annotation;(value=I2)
field name procedureResultUnknown descriptor I constantValue 0 flags 19
field name procedureNoResult descriptor I constantValue 1 flags 19
field name procedureReturnsResult descriptor I constantValue 2 flags 19
field name procedureColumnUnknown descriptor I constantValue 0 flags 19
field name procedureColumnIn descriptor I constantValue 1 flags 19
field name procedureColumnInOut descriptor I constantValue 2 flags 19
field name procedureColumnOut descriptor I constantValue 4 flags 19
field name procedureColumnReturn descriptor I constantValue 5 flags 19
field name procedureColumnResult descriptor I constantValue 3 flags 19
field name procedureNoNulls descriptor I constantValue 0 flags 19
field name procedureNullable descriptor I constantValue 1 flags 19
field name procedureNullableUnknown descriptor I constantValue 2 flags 19
field name columnNoNulls descriptor I constantValue 0 flags 19
field name columnNullable descriptor I constantValue 1 flags 19
field name columnNullableUnknown descriptor I constantValue 2 flags 19
field name bestRowTemporary descriptor I constantValue 0 flags 19
field name bestRowTransaction descriptor I constantValue 1 flags 19
field name bestRowSession descriptor I constantValue 2 flags 19
field name bestRowUnknown descriptor I constantValue 0 flags 19
field name bestRowNotPseudo descriptor I constantValue 1 flags 19
field name bestRowPseudo descriptor I constantValue 2 flags 19
field name versionColumnUnknown descriptor I constantValue 0 flags 19
field name versionColumnNotPseudo descriptor I constantValue 1 flags 19
field name versionColumnPseudo descriptor I constantValue 2 flags 19
field name importedKeyCascade descriptor I constantValue 0 flags 19
field name importedKeyRestrict descriptor I constantValue 1 flags 19
field name importedKeySetNull descriptor I constantValue 2 flags 19
field name importedKeyNoAction descriptor I constantValue 3 flags 19
field name importedKeySetDefault descriptor I constantValue 4 flags 19
field name importedKeyInitiallyDeferred descriptor I constantValue 5 flags 19
field name importedKeyInitiallyImmediate descriptor I constantValue 6 flags 19
field name importedKeyNotDeferrable descriptor I constantValue 7 flags 19
field name typeNoNulls descriptor I constantValue 0 flags 19
field name typeNullable descriptor I constantValue 1 flags 19
field name typeNullableUnknown descriptor I constantValue 2 flags 19
field name typePredNone descriptor I constantValue 0 flags 19
field name typePredChar descriptor I constantValue 1 flags 19
field name typePredBasic descriptor I constantValue 2 flags 19
field name typeSearchable descriptor I constantValue 3 flags 19
field name tableIndexStatistic descriptor S constantValue 0 flags 19
field name tableIndexClustered descriptor S constantValue 1 flags 19
field name tableIndexHashed descriptor S constantValue 2 flags 19
field name tableIndexOther descriptor S constantValue 3 flags 19
field name attributeNoNulls descriptor S constantValue 0 flags 19
field name attributeNullable descriptor S constantValue 1 flags 19
field name attributeNullableUnknown descriptor S constantValue 2 flags 19
field name sqlStateXOpen descriptor I constantValue 1 flags 19
field name sqlStateSQL descriptor I constantValue 2 flags 19
field name sqlStateSQL99 descriptor I constantValue 2 flags 19
field name functionColumnUnknown descriptor I constantValue 0 flags 19
field name functionColumnIn descriptor I constantValue 1 flags 19
field name functionColumnInOut descriptor I constantValue 2 flags 19
field name functionColumnOut descriptor I constantValue 3 flags 19
field name functionReturn descriptor I constantValue 4 flags 19
field name functionColumnResult descriptor I constantValue 5 flags 19
field name functionNoNulls descriptor I constantValue 0 flags 19
field name functionNullable descriptor I constantValue 1 flags 19
field name functionNullableUnknown descriptor I constantValue 2 flags 19
field name functionResultUnknown descriptor I constantValue 0 flags 19
field name functionNoTable descriptor I constantValue 1 flags 19
field name functionReturnsTable descriptor I constantValue 2 flags 19
method name allProceduresAreCallable descriptor ()Z thrownTypes java/sql/SQLException flags 401
method name allTablesAreSelectable descriptor ()Z thrownTypes java/sql/SQLException flags 401
method name getURL descriptor ()Ljava/lang/String; thrownTypes java/sql/SQLException flags 401
method name getUserName descriptor ()Ljava/lang/String; thrownTypes java/sql/SQLException flags 401
method name isReadOnly descriptor ()Z thrownTypes java/sql/SQLException flags 401
method name nullsAreSortedHigh descriptor ()Z thrownTypes java/sql/SQLException flags 401
method name nullsAreSortedLow descriptor ()Z thrownTypes java/sql/SQLException flags 401
method name nullsAreSortedAtStart descriptor ()Z thrownTypes java/sql/SQLException flags 401
method name nullsAreSortedAtEnd descriptor ()Z thrownTypes java/sql/SQLException flags 401
method name getDatabaseProductName descriptor ()Ljava/lang/String; thrownTypes java/sql/SQLException flags 401
method name getDatabaseProductVersion descriptor ()Ljava/lang/String; thrownTypes java/sql/SQLException flags 401
method name getDriverName descriptor ()Ljava/lang/String; thrownTypes java/sql/SQLException flags 401
method name getDriverVersion descriptor ()Ljava/lang/String; thrownTypes java/sql/SQLException flags 401
method name getDriverMajorVersion descriptor ()I flags 401
method name getDriverMinorVersion descriptor ()I flags 401
method name usesLocalFiles descriptor ()Z thrownTypes java/sql/SQLException flags 401
method name usesLocalFilePerTable descriptor ()Z thrownTypes java/sql/SQLException flags 401
method name supportsMixedCaseIdentifiers descriptor ()Z thrownTypes java/sql/SQLException flags 401
method name storesUpperCaseIdentifiers descriptor ()Z thrownTypes java/sql/SQLException flags 401
method name storesLowerCaseIdentifiers descriptor ()Z thrownTypes java/sql/SQLException flags 401
method name storesMixedCaseIdentifiers descriptor ()Z thrownTypes java/sql/SQLException flags 401
method name supportsMixedCaseQuotedIdentifiers descriptor ()Z thrownTypes java/sql/SQLException flags 401
method name storesUpperCaseQuotedIdentifiers descriptor ()Z thrownTypes java/sql/SQLException flags 401
method name storesLowerCaseQuotedIdentifiers descriptor ()Z thrownTypes java/sql/SQLException flags 401
method name storesMixedCaseQuotedIdentifiers descriptor ()Z thrownTypes java/sql/SQLException flags 401
method name getIdentifierQuoteString descriptor ()Ljava/lang/String; thrownTypes java/sql/SQLException flags 401
method name getSQLKeywords descriptor ()Ljava/lang/String; thrownTypes java/sql/SQLException flags 401
method name getNumericFunctions descriptor ()Ljava/lang/String; thrownTypes java/sql/SQLException flags 401
method name getStringFunctions descriptor ()Ljava/lang/String; thrownTypes java/sql/SQLException flags 401
method name getSystemFunctions descriptor ()Ljava/lang/String; thrownTypes java/sql/SQLException flags 401
method name getTimeDateFunctions descriptor ()Ljava/lang/String; thrownTypes java/sql/SQLException flags 401
method name getSearchStringEscape descriptor ()Ljava/lang/String; thrownTypes java/sql/SQLException flags 401
method name getExtraNameCharacters descriptor ()Ljava/lang/String; thrownTypes java/sql/SQLException flags 401
method name supportsAlterTableWithAddColumn descriptor ()Z thrownTypes java/sql/SQLException flags 401
method name supportsAlterTableWithDropColumn descriptor ()Z thrownTypes java/sql/SQLException flags 401
method name supportsColumnAliasing descriptor ()Z thrownTypes java/sql/SQLException flags 401
method name nullPlusNonNullIsNull descriptor ()Z thrownTypes java/sql/SQLException flags 401
method name supportsConvert descriptor ()Z thrownTypes java/sql/SQLException flags 401
method name supportsConvert descriptor (II)Z thrownTypes java/sql/SQLException flags 401
method name supportsTableCorrelationNames descriptor ()Z thrownTypes java/sql/SQLException flags 401
method name supportsDifferentTableCorrelationNames descriptor ()Z thrownTypes java/sql/SQLException flags 401
method name supportsExpressionsInOrderBy descriptor ()Z thrownTypes java/sql/SQLException flags 401
method name supportsOrderByUnrelated descriptor ()Z thrownTypes java/sql/SQLException flags 401
method name supportsGroupBy descriptor ()Z thrownTypes java/sql/SQLException flags 401
method name supportsGroupByUnrelated descriptor ()Z thrownTypes java/sql/SQLException flags 401
method name supportsGroupByBeyondSelect descriptor ()Z thrownTypes java/sql/SQLException flags 401
method name supportsLikeEscapeClause descriptor ()Z thrownTypes java/sql/SQLException flags 401
method name supportsMultipleResultSets descriptor ()Z thrownTypes java/sql/SQLException flags 401
method name supportsMultipleTransactions descriptor ()Z thrownTypes java/sql/SQLException flags 401
method name supportsNonNullableColumns descriptor ()Z thrownTypes java/sql/SQLException flags 401
method name supportsMinimumSQLGrammar descriptor ()Z thrownTypes java/sql/SQLException flags 401
method name supportsCoreSQLGrammar descriptor ()Z thrownTypes java/sql/SQLException flags 401
method name supportsExtendedSQLGrammar descriptor ()Z thrownTypes java/sql/SQLException flags 401
method name supportsANSI92EntryLevelSQL descriptor ()Z thrownTypes java/sql/SQLException flags 401
method name supportsANSI92IntermediateSQL descriptor ()Z thrownTypes java/sql/SQLException flags 401
method name supportsANSI92FullSQL descriptor ()Z thrownTypes java/sql/SQLException flags 401
method name supportsIntegrityEnhancementFacility descriptor ()Z thrownTypes java/sql/SQLException flags 401
method name supportsOuterJoins descriptor ()Z thrownTypes java/sql/SQLException flags 401
method name supportsFullOuterJoins descriptor ()Z thrownTypes java/sql/SQLException flags 401
method name supportsLimitedOuterJoins descriptor ()Z thrownTypes java/sql/SQLException flags 401
method name getSchemaTerm descriptor ()Ljava/lang/String; thrownTypes java/sql/SQLException flags 401
method name getProcedureTerm descriptor ()Ljava/lang/String; thrownTypes java/sql/SQLException flags 401
method name getCatalogTerm descriptor ()Ljava/lang/String; thrownTypes java/sql/SQLException flags 401
method name isCatalogAtStart descriptor ()Z thrownTypes java/sql/SQLException flags 401
method name getCatalogSeparator descriptor ()Ljava/lang/String; thrownTypes java/sql/SQLException flags 401
method name supportsSchemasInDataManipulation descriptor ()Z thrownTypes java/sql/SQLException flags 401
method name supportsSchemasInProcedureCalls descriptor ()Z thrownTypes java/sql/SQLException flags 401
method name supportsSchemasInTableDefinitions descriptor ()Z thrownTypes java/sql/SQLException flags 401
method name supportsSchemasInIndexDefinitions descriptor ()Z thrownTypes java/sql/SQLException flags 401
method name supportsSchemasInPrivilegeDefinitions descriptor ()Z thrownTypes java/sql/SQLException flags 401
method name supportsCatalogsInDataManipulation descriptor ()Z thrownTypes java/sql/SQLException flags 401
method name supportsCatalogsInProcedureCalls descriptor ()Z thrownTypes java/sql/SQLException flags 401
method name supportsCatalogsInTableDefinitions descriptor ()Z thrownTypes java/sql/SQLException flags 401
method name supportsCatalogsInIndexDefinitions descriptor ()Z thrownTypes java/sql/SQLException flags 401
method name supportsCatalogsInPrivilegeDefinitions descriptor ()Z thrownTypes java/sql/SQLException flags 401
method name supportsPositionedDelete descriptor ()Z thrownTypes java/sql/SQLException flags 401
method name supportsPositionedUpdate descriptor ()Z thrownTypes java/sql/SQLException flags 401
method name supportsSelectForUpdate descriptor ()Z thrownTypes java/sql/SQLException flags 401
method name supportsStoredProcedures descriptor ()Z thrownTypes java/sql/SQLException flags 401
method name supportsSubqueriesInComparisons descriptor ()Z thrownTypes java/sql/SQLException flags 401
method name supportsSubqueriesInExists descriptor ()Z thrownTypes java/sql/SQLException flags 401
method name supportsSubqueriesInIns descriptor ()Z thrownTypes java/sql/SQLException flags 401
method name supportsSubqueriesInQuantifieds descriptor ()Z thrownTypes java/sql/SQLException flags 401
method name supportsCorrelatedSubqueries descriptor ()Z thrownTypes java/sql/SQLException flags 401
method name supportsUnion descriptor ()Z thrownTypes java/sql/SQLException flags 401
method name supportsUnionAll descriptor ()Z thrownTypes java/sql/SQLException flags 401
method name supportsOpenCursorsAcrossCommit descriptor ()Z thrownTypes java/sql/SQLException flags 401
method name supportsOpenCursorsAcrossRollback descriptor ()Z thrownTypes java/sql/SQLException flags 401
method name supportsOpenStatementsAcrossCommit descriptor ()Z thrownTypes java/sql/SQLException flags 401
method name supportsOpenStatementsAcrossRollback descriptor ()Z thrownTypes java/sql/SQLException flags 401
method name getMaxBinaryLiteralLength descriptor ()I thrownTypes java/sql/SQLException flags 401
method name getMaxCharLiteralLength descriptor ()I thrownTypes java/sql/SQLException flags 401
method name getMaxColumnNameLength descriptor ()I thrownTypes java/sql/SQLException flags 401
method name getMaxColumnsInGroupBy descriptor ()I thrownTypes java/sql/SQLException flags 401
method name getMaxColumnsInIndex descriptor ()I thrownTypes java/sql/SQLException flags 401
method name getMaxColumnsInOrderBy descriptor ()I thrownTypes java/sql/SQLException flags 401
method name getMaxColumnsInSelect descriptor ()I thrownTypes java/sql/SQLException flags 401
method name getMaxColumnsInTable descriptor ()I thrownTypes java/sql/SQLException flags 401
method name getMaxConnections descriptor ()I thrownTypes java/sql/SQLException flags 401
method name getMaxCursorNameLength descriptor ()I thrownTypes java/sql/SQLException flags 401
method name getMaxIndexLength descriptor ()I thrownTypes java/sql/SQLException flags 401
method name getMaxSchemaNameLength descriptor ()I thrownTypes java/sql/SQLException flags 401
method name getMaxProcedureNameLength descriptor ()I thrownTypes java/sql/SQLException flags 401
method name getMaxCatalogNameLength descriptor ()I thrownTypes java/sql/SQLException flags 401
method name getMaxRowSize descriptor ()I thrownTypes java/sql/SQLException flags 401
method name doesMaxRowSizeIncludeBlobs descriptor ()Z thrownTypes java/sql/SQLException flags 401
method name getMaxStatementLength descriptor ()I thrownTypes java/sql/SQLException flags 401
method name getMaxStatements descriptor ()I thrownTypes java/sql/SQLException flags 401
method name getMaxTableNameLength descriptor ()I thrownTypes java/sql/SQLException flags 401
method name getMaxTablesInSelect descriptor ()I thrownTypes java/sql/SQLException flags 401
method name getMaxUserNameLength descriptor ()I thrownTypes java/sql/SQLException flags 401
method name getDefaultTransactionIsolation descriptor ()I thrownTypes java/sql/SQLException flags 401
method name supportsTransactions descriptor ()Z thrownTypes java/sql/SQLException flags 401
method name supportsTransactionIsolationLevel descriptor (I)Z thrownTypes java/sql/SQLException flags 401
method name supportsDataDefinitionAndDataManipulationTransactions descriptor ()Z thrownTypes java/sql/SQLException flags 401
method name supportsDataManipulationTransactionsOnly descriptor ()Z thrownTypes java/sql/SQLException flags 401
method name dataDefinitionCausesTransactionCommit descriptor ()Z thrownTypes java/sql/SQLException flags 401
method name dataDefinitionIgnoredInTransactions descriptor ()Z thrownTypes java/sql/SQLException flags 401
method name getProcedures descriptor (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Ljava/sql/ResultSet; thrownTypes java/sql/SQLException flags 401
method name getProcedureColumns descriptor (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Ljava/sql/ResultSet; thrownTypes java/sql/SQLException flags 401
method name getTables descriptor (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;[Ljava/lang/String;)Ljava/sql/ResultSet; thrownTypes java/sql/SQLException flags 401
method name getSchemas descriptor ()Ljava/sql/ResultSet; thrownTypes java/sql/SQLException flags 401
method name getCatalogs descriptor ()Ljava/sql/ResultSet; thrownTypes java/sql/SQLException flags 401
method name getTableTypes descriptor ()Ljava/sql/ResultSet; thrownTypes java/sql/SQLException flags 401
method name getColumns descriptor (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Ljava/sql/ResultSet; thrownTypes java/sql/SQLException flags 401
method name getColumnPrivileges descriptor (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Ljava/sql/ResultSet; thrownTypes java/sql/SQLException flags 401
method name getTablePrivileges descriptor (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Ljava/sql/ResultSet; thrownTypes java/sql/SQLException flags 401
method name getBestRowIdentifier descriptor (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;IZ)Ljava/sql/ResultSet; thrownTypes java/sql/SQLException flags 401
method name getVersionColumns descriptor (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Ljava/sql/ResultSet; thrownTypes java/sql/SQLException flags 401
method name getPrimaryKeys descriptor (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Ljava/sql/ResultSet; thrownTypes java/sql/SQLException flags 401
method name getImportedKeys descriptor (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Ljava/sql/ResultSet; thrownTypes java/sql/SQLException flags 401
method name getExportedKeys descriptor (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Ljava/sql/ResultSet; thrownTypes java/sql/SQLException flags 401
method name getCrossReference descriptor (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Ljava/sql/ResultSet; thrownTypes java/sql/SQLException flags 401
method name getTypeInfo descriptor ()Ljava/sql/ResultSet; thrownTypes java/sql/SQLException flags 401
method name getIndexInfo descriptor (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;ZZ)Ljava/sql/ResultSet; thrownTypes java/sql/SQLException flags 401
method name supportsResultSetType descriptor (I)Z thrownTypes java/sql/SQLException flags 401
method name supportsResultSetConcurrency descriptor (II)Z thrownTypes java/sql/SQLException flags 401
method name ownUpdatesAreVisible descriptor (I)Z thrownTypes java/sql/SQLException flags 401
method name ownDeletesAreVisible descriptor (I)Z thrownTypes java/sql/SQLException flags 401
method name ownInsertsAreVisible descriptor (I)Z thrownTypes java/sql/SQLException flags 401
method name othersUpdatesAreVisible descriptor (I)Z thrownTypes java/sql/SQLException flags 401
method name othersDeletesAreVisible descriptor (I)Z thrownTypes java/sql/SQLException flags 401
method name othersInsertsAreVisible descriptor (I)Z thrownTypes java/sql/SQLException flags 401
method name updatesAreDetected descriptor (I)Z thrownTypes java/sql/SQLException flags 401
method name deletesAreDetected descriptor (I)Z thrownTypes java/sql/SQLException flags 401
method name insertsAreDetected descriptor (I)Z thrownTypes java/sql/SQLException flags 401
method name supportsBatchUpdates descriptor ()Z thrownTypes java/sql/SQLException flags 401
method name getUDTs descriptor (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;[I)Ljava/sql/ResultSet; thrownTypes java/sql/SQLException flags 401
method name getConnection descriptor ()Ljava/sql/Connection; thrownTypes java/sql/SQLException flags 401
method name supportsSavepoints descriptor ()Z thrownTypes java/sql/SQLException flags 401
method name supportsNamedParameters descriptor ()Z thrownTypes java/sql/SQLException flags 401
method name supportsMultipleOpenResults descriptor ()Z thrownTypes java/sql/SQLException flags 401
method name supportsGetGeneratedKeys descriptor ()Z thrownTypes java/sql/SQLException flags 401
method name getSuperTypes descriptor (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Ljava/sql/ResultSet; thrownTypes java/sql/SQLException flags 401
method name getSuperTables descriptor (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Ljava/sql/ResultSet; thrownTypes java/sql/SQLException flags 401
method name getAttributes descriptor (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Ljava/sql/ResultSet; thrownTypes java/sql/SQLException flags 401
method name supportsResultSetHoldability descriptor (I)Z thrownTypes java/sql/SQLException flags 401
method name getResultSetHoldability descriptor ()I thrownTypes java/sql/SQLException flags 401
method name getDatabaseMajorVersion descriptor ()I thrownTypes java/sql/SQLException flags 401
method name getDatabaseMinorVersion descriptor ()I thrownTypes java/sql/SQLException flags 401
method name getJDBCMajorVersion descriptor ()I thrownTypes java/sql/SQLException flags 401
method name getJDBCMinorVersion descriptor ()I thrownTypes java/sql/SQLException flags 401
method name getSQLStateType descriptor ()I thrownTypes java/sql/SQLException flags 401
method name locatorsUpdateCopy descriptor ()Z thrownTypes java/sql/SQLException flags 401
method name supportsStatementPooling descriptor ()Z thrownTypes java/sql/SQLException flags 401
method name getRowIdLifetime descriptor ()Ljava/sql/RowIdLifetime; thrownTypes java/sql/SQLException flags 401
method name getSchemas descriptor (Ljava/lang/String;Ljava/lang/String;)Ljava/sql/ResultSet; thrownTypes java/sql/SQLException flags 401
method name supportsStoredFunctionsUsingCallSyntax descriptor ()Z thrownTypes java/sql/SQLException flags 401
method name autoCommitFailureClosesAllResultSets descriptor ()Z thrownTypes java/sql/SQLException flags 401
method name getClientInfoProperties descriptor ()Ljava/sql/ResultSet; thrownTypes java/sql/SQLException flags 401
method name getFunctions descriptor (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Ljava/sql/ResultSet; thrownTypes java/sql/SQLException flags 401
method name getFunctionColumns descriptor (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Ljava/sql/ResultSet; thrownTypes java/sql/SQLException flags 401
method name getPseudoColumns descriptor (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Ljava/sql/ResultSet; thrownTypes java/sql/SQLException flags 401
method name generatedKeyAlwaysReturned descriptor ()Z thrownTypes java/sql/SQLException flags 401
method name getMaxLogicalLobSize descriptor ()J thrownTypes java/sql/SQLException flags 1
method name supportsRefCursors descriptor ()Z thrownTypes java/sql/SQLException flags 1
class name java/sql/Date
header extends java/util/Date flags 21 classAnnotations @Ljdk/Profile+Annotation;(value=I2)
method name <init> descriptor (III)V flags 1 deprecated true runtimeAnnotations @Ljava/lang/Deprecated;
method name <init> descriptor (J)V flags 1
method name setTime descriptor (J)V flags 1
method name valueOf descriptor (Ljava/lang/String;)Ljava/sql/Date; flags 9
method name toString descriptor ()Ljava/lang/String; flags 1
method name getHours descriptor ()I flags 1 deprecated true runtimeAnnotations @Ljava/lang/Deprecated;
method name getMinutes descriptor ()I flags 1 deprecated true runtimeAnnotations @Ljava/lang/Deprecated;
method name getSeconds descriptor ()I flags 1 deprecated true runtimeAnnotations @Ljava/lang/Deprecated;
method name setHours descriptor (I)V flags 1 deprecated true runtimeAnnotations @Ljava/lang/Deprecated;
method name setMinutes descriptor (I)V flags 1 deprecated true runtimeAnnotations @Ljava/lang/Deprecated;
method name setSeconds descriptor (I)V flags 1 deprecated true runtimeAnnotations @Ljava/lang/Deprecated;
method name valueOf descriptor (Ljava/time/LocalDate;)Ljava/sql/Date; flags 9
method name toLocalDate descriptor ()Ljava/time/LocalDate; flags 1
method name toInstant descriptor ()Ljava/time/Instant; flags 1
class name java/sql/Driver
header extends java/lang/Object flags 601 classAnnotations @Ljdk/Profile+Annotation;(value=I2)
method name connect descriptor (Ljava/lang/String;Ljava/util/Properties;)Ljava/sql/Connection; thrownTypes java/sql/SQLException flags 401
method name acceptsURL descriptor (Ljava/lang/String;)Z thrownTypes java/sql/SQLException flags 401
method name getPropertyInfo descriptor (Ljava/lang/String;Ljava/util/Properties;)[Ljava/sql/DriverPropertyInfo; thrownTypes java/sql/SQLException flags 401
method name getMajorVersion descriptor ()I flags 401
method name getMinorVersion descriptor ()I flags 401
method name jdbcCompliant descriptor ()Z flags 401
method name getParentLogger descriptor ()Ljava/util/logging/Logger; thrownTypes java/sql/SQLFeatureNotSupportedException flags 401
class name java/sql/DriverAction
header extends java/lang/Object flags 601 classAnnotations @Ljdk/Profile+Annotation;(value=I2)
method name deregister descriptor ()V flags 401
class name java/sql/DriverManager
header extends java/lang/Object flags 21 classAnnotations @Ljdk/Profile+Annotation;(value=I2)
method name getLogWriter descriptor ()Ljava/io/PrintWriter; flags 9
method name setLogWriter descriptor (Ljava/io/PrintWriter;)V flags 9
method name getConnection descriptor (Ljava/lang/String;Ljava/util/Properties;)Ljava/sql/Connection; thrownTypes java/sql/SQLException flags 9 runtimeAnnotations @Lsun/reflect/CallerSensitive;
method name getConnection descriptor (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Ljava/sql/Connection; thrownTypes java/sql/SQLException flags 9 runtimeAnnotations @Lsun/reflect/CallerSensitive;
method name getConnection descriptor (Ljava/lang/String;)Ljava/sql/Connection; thrownTypes java/sql/SQLException flags 9 runtimeAnnotations @Lsun/reflect/CallerSensitive;
method name getDriver descriptor (Ljava/lang/String;)Ljava/sql/Driver; thrownTypes java/sql/SQLException flags 9 runtimeAnnotations @Lsun/reflect/CallerSensitive;
method name registerDriver descriptor (Ljava/sql/Driver;)V thrownTypes java/sql/SQLException flags 29
method name registerDriver descriptor (Ljava/sql/Driver;Ljava/sql/DriverAction;)V thrownTypes java/sql/SQLException flags 29
method name deregisterDriver descriptor (Ljava/sql/Driver;)V thrownTypes java/sql/SQLException flags 29 runtimeAnnotations @Lsun/reflect/CallerSensitive;
method name getDrivers descriptor ()Ljava/util/Enumeration; flags 9 signature ()Ljava/util/Enumeration<Ljava/sql/Driver;>; runtimeAnnotations @Lsun/reflect/CallerSensitive;
method name setLoginTimeout descriptor (I)V flags 9
method name getLoginTimeout descriptor ()I flags 9
method name setLogStream descriptor (Ljava/io/PrintStream;)V flags 9 deprecated true runtimeAnnotations @Ljava/lang/Deprecated;
method name getLogStream descriptor ()Ljava/io/PrintStream; flags 9 deprecated true runtimeAnnotations @Ljava/lang/Deprecated;
method name println descriptor (Ljava/lang/String;)V flags 9
class name java/sql/DriverPropertyInfo
header extends java/lang/Object flags 21 classAnnotations @Ljdk/Profile+Annotation;(value=I2)
field name name descriptor Ljava/lang/String; flags 1
field name description descriptor Ljava/lang/String; flags 1
field name required descriptor Z flags 1
field name value descriptor Ljava/lang/String; flags 1
field name choices descriptor [Ljava/lang/String; flags 1
method name <init> descriptor (Ljava/lang/String;Ljava/lang/String;)V flags 1
class name java/sql/JDBCType
header extends java/lang/Enum implements java/sql/SQLType flags 4031 signature Ljava/lang/Enum<Ljava/sql/JDBCType;>;Ljava/sql/SQLType; classAnnotations @Ljdk/Profile+Annotation;(value=I2)
field name BIT descriptor Ljava/sql/JDBCType; flags 4019
field name TINYINT descriptor Ljava/sql/JDBCType; flags 4019
field name SMALLINT descriptor Ljava/sql/JDBCType; flags 4019
field name INTEGER descriptor Ljava/sql/JDBCType; flags 4019
field name BIGINT descriptor Ljava/sql/JDBCType; flags 4019
field name FLOAT descriptor Ljava/sql/JDBCType; flags 4019
field name REAL descriptor Ljava/sql/JDBCType; flags 4019
field name DOUBLE descriptor Ljava/sql/JDBCType; flags 4019
field name NUMERIC descriptor Ljava/sql/JDBCType; flags 4019
field name DECIMAL descriptor Ljava/sql/JDBCType; flags 4019
field name CHAR descriptor Ljava/sql/JDBCType; flags 4019
field name VARCHAR descriptor Ljava/sql/JDBCType; flags 4019
field name LONGVARCHAR descriptor Ljava/sql/JDBCType; flags 4019
field name DATE descriptor Ljava/sql/JDBCType; flags 4019
field name TIME descriptor Ljava/sql/JDBCType; flags 4019
field name TIMESTAMP descriptor Ljava/sql/JDBCType; flags 4019
field name BINARY descriptor Ljava/sql/JDBCType; flags 4019
field name VARBINARY descriptor Ljava/sql/JDBCType; flags 4019
field name LONGVARBINARY descriptor Ljava/sql/JDBCType; flags 4019
field name NULL descriptor Ljava/sql/JDBCType; flags 4019
field name OTHER descriptor Ljava/sql/JDBCType; flags 4019
field name JAVA_OBJECT descriptor Ljava/sql/JDBCType; flags 4019
field name DISTINCT descriptor Ljava/sql/JDBCType; flags 4019
field name STRUCT descriptor Ljava/sql/JDBCType; flags 4019
field name ARRAY descriptor Ljava/sql/JDBCType; flags 4019
field name BLOB descriptor Ljava/sql/JDBCType; flags 4019
field name CLOB descriptor Ljava/sql/JDBCType; flags 4019
field name REF descriptor Ljava/sql/JDBCType; flags 4019
field name DATALINK descriptor Ljava/sql/JDBCType; flags 4019
field name BOOLEAN descriptor Ljava/sql/JDBCType; flags 4019
field name ROWID descriptor Ljava/sql/JDBCType; flags 4019
field name NCHAR descriptor Ljava/sql/JDBCType; flags 4019
field name NVARCHAR descriptor Ljava/sql/JDBCType; flags 4019
field name LONGNVARCHAR descriptor Ljava/sql/JDBCType; flags 4019
field name NCLOB descriptor Ljava/sql/JDBCType; flags 4019
field name SQLXML descriptor Ljava/sql/JDBCType; flags 4019
field name REF_CURSOR descriptor Ljava/sql/JDBCType; flags 4019
field name TIME_WITH_TIMEZONE descriptor Ljava/sql/JDBCType; flags 4019
field name TIMESTAMP_WITH_TIMEZONE descriptor Ljava/sql/JDBCType; flags 4019
method name values descriptor ()[Ljava/sql/JDBCType; flags 9
method name valueOf descriptor (Ljava/lang/String;)Ljava/sql/JDBCType; flags 9
method name getName descriptor ()Ljava/lang/String; flags 1
method name getVendor descriptor ()Ljava/lang/String; flags 1
method name getVendorTypeNumber descriptor ()Ljava/lang/Integer; flags 1
method name valueOf descriptor (I)Ljava/sql/JDBCType; flags 9
class name java/sql/NClob
header extends java/lang/Object implements java/sql/Clob flags 601 classAnnotations @Ljdk/Profile+Annotation;(value=I2)
class name java/sql/ParameterMetaData
header extends java/lang/Object implements java/sql/Wrapper flags 601 classAnnotations @Ljdk/Profile+Annotation;(value=I2)
field name parameterNoNulls descriptor I constantValue 0 flags 19
field name parameterNullable descriptor I constantValue 1 flags 19
field name parameterNullableUnknown descriptor I constantValue 2 flags 19
field name parameterModeUnknown descriptor I constantValue 0 flags 19
field name parameterModeIn descriptor I constantValue 1 flags 19
field name parameterModeInOut descriptor I constantValue 2 flags 19
field name parameterModeOut descriptor I constantValue 4 flags 19
method name getParameterCount descriptor ()I thrownTypes java/sql/SQLException flags 401
method name isNullable descriptor (I)I thrownTypes java/sql/SQLException flags 401
method name isSigned descriptor (I)Z thrownTypes java/sql/SQLException flags 401
method name getPrecision descriptor (I)I thrownTypes java/sql/SQLException flags 401
method name getScale descriptor (I)I thrownTypes java/sql/SQLException flags 401
method name getParameterType descriptor (I)I thrownTypes java/sql/SQLException flags 401
method name getParameterTypeName descriptor (I)Ljava/lang/String; thrownTypes java/sql/SQLException flags 401
method name getParameterClassName descriptor (I)Ljava/lang/String; thrownTypes java/sql/SQLException flags 401
method name getParameterMode descriptor (I)I thrownTypes java/sql/SQLException flags 401
class name java/sql/PreparedStatement
header extends java/lang/Object implements java/sql/Statement flags 601 classAnnotations @Ljdk/Profile+Annotation;(value=I2)
method name executeQuery descriptor ()Ljava/sql/ResultSet; thrownTypes java/sql/SQLException flags 401
method name executeUpdate descriptor ()I thrownTypes java/sql/SQLException flags 401
method name setNull descriptor (II)V thrownTypes java/sql/SQLException flags 401
method name setBoolean descriptor (IZ)V thrownTypes java/sql/SQLException flags 401
method name setByte descriptor (IB)V thrownTypes java/sql/SQLException flags 401
method name setShort descriptor (IS)V thrownTypes java/sql/SQLException flags 401
method name setInt descriptor (II)V thrownTypes java/sql/SQLException flags 401
method name setLong descriptor (IJ)V thrownTypes java/sql/SQLException flags 401
method name setFloat descriptor (IF)V thrownTypes java/sql/SQLException flags 401
method name setDouble descriptor (ID)V thrownTypes java/sql/SQLException flags 401
method name setBigDecimal descriptor (ILjava/math/BigDecimal;)V thrownTypes java/sql/SQLException flags 401
method name setString descriptor (ILjava/lang/String;)V thrownTypes java/sql/SQLException flags 401
method name setBytes descriptor (I[B)V thrownTypes java/sql/SQLException flags 401
method name setDate descriptor (ILjava/sql/Date;)V thrownTypes java/sql/SQLException flags 401
method name setTime descriptor (ILjava/sql/Time;)V thrownTypes java/sql/SQLException flags 401
method name setTimestamp descriptor (ILjava/sql/Timestamp;)V thrownTypes java/sql/SQLException flags 401
method name setAsciiStream descriptor (ILjava/io/InputStream;I)V thrownTypes java/sql/SQLException flags 401
method name setUnicodeStream descriptor (ILjava/io/InputStream;I)V thrownTypes java/sql/SQLException flags 401 deprecated true runtimeAnnotations @Ljava/lang/Deprecated;
method name setBinaryStream descriptor (ILjava/io/InputStream;I)V thrownTypes java/sql/SQLException flags 401
method name clearParameters descriptor ()V thrownTypes java/sql/SQLException flags 401
method name setObject descriptor (ILjava/lang/Object;I)V thrownTypes java/sql/SQLException flags 401
method name setObject descriptor (ILjava/lang/Object;)V thrownTypes java/sql/SQLException flags 401
method name execute descriptor ()Z thrownTypes java/sql/SQLException flags 401
method name addBatch descriptor ()V thrownTypes java/sql/SQLException flags 401
method name setCharacterStream descriptor (ILjava/io/Reader;I)V thrownTypes java/sql/SQLException flags 401
method name setRef descriptor (ILjava/sql/Ref;)V thrownTypes java/sql/SQLException flags 401
method name setBlob descriptor (ILjava/sql/Blob;)V thrownTypes java/sql/SQLException flags 401
method name setClob descriptor (ILjava/sql/Clob;)V thrownTypes java/sql/SQLException flags 401
method name setArray descriptor (ILjava/sql/Array;)V thrownTypes java/sql/SQLException flags 401
method name getMetaData descriptor ()Ljava/sql/ResultSetMetaData; thrownTypes java/sql/SQLException flags 401
method name setDate descriptor (ILjava/sql/Date;Ljava/util/Calendar;)V thrownTypes java/sql/SQLException flags 401
method name setTime descriptor (ILjava/sql/Time;Ljava/util/Calendar;)V thrownTypes java/sql/SQLException flags 401
method name setTimestamp descriptor (ILjava/sql/Timestamp;Ljava/util/Calendar;)V thrownTypes java/sql/SQLException flags 401
method name setNull descriptor (IILjava/lang/String;)V thrownTypes java/sql/SQLException flags 401
method name setURL descriptor (ILjava/net/URL;)V thrownTypes java/sql/SQLException flags 401
method name getParameterMetaData descriptor ()Ljava/sql/ParameterMetaData; thrownTypes java/sql/SQLException flags 401
method name setRowId descriptor (ILjava/sql/RowId;)V thrownTypes java/sql/SQLException flags 401
method name setNString descriptor (ILjava/lang/String;)V thrownTypes java/sql/SQLException flags 401
method name setNCharacterStream descriptor (ILjava/io/Reader;J)V thrownTypes java/sql/SQLException flags 401
method name setNClob descriptor (ILjava/sql/NClob;)V thrownTypes java/sql/SQLException flags 401
method name setClob descriptor (ILjava/io/Reader;J)V thrownTypes java/sql/SQLException flags 401
method name setBlob descriptor (ILjava/io/InputStream;J)V thrownTypes java/sql/SQLException flags 401
method name setNClob descriptor (ILjava/io/Reader;J)V thrownTypes java/sql/SQLException flags 401
method name setSQLXML descriptor (ILjava/sql/SQLXML;)V thrownTypes java/sql/SQLException flags 401
method name setObject descriptor (ILjava/lang/Object;II)V thrownTypes java/sql/SQLException flags 401
method name setAsciiStream descriptor (ILjava/io/InputStream;J)V thrownTypes java/sql/SQLException flags 401
method name setBinaryStream descriptor (ILjava/io/InputStream;J)V thrownTypes java/sql/SQLException flags 401
method name setCharacterStream descriptor (ILjava/io/Reader;J)V thrownTypes java/sql/SQLException flags 401
method name setAsciiStream descriptor (ILjava/io/InputStream;)V thrownTypes java/sql/SQLException flags 401
method name setBinaryStream descriptor (ILjava/io/InputStream;)V thrownTypes java/sql/SQLException flags 401
method name setCharacterStream descriptor (ILjava/io/Reader;)V thrownTypes java/sql/SQLException flags 401
method name setNCharacterStream descriptor (ILjava/io/Reader;)V thrownTypes java/sql/SQLException flags 401
method name setClob descriptor (ILjava/io/Reader;)V thrownTypes java/sql/SQLException flags 401
method name setBlob descriptor (ILjava/io/InputStream;)V thrownTypes java/sql/SQLException flags 401
method name setNClob descriptor (ILjava/io/Reader;)V thrownTypes java/sql/SQLException flags 401
method name setObject descriptor (ILjava/lang/Object;Ljava/sql/SQLType;I)V thrownTypes java/sql/SQLException flags 1
method name setObject descriptor (ILjava/lang/Object;Ljava/sql/SQLType;)V thrownTypes java/sql/SQLException flags 1
method name executeLargeUpdate descriptor ()J thrownTypes java/sql/SQLException flags 1
class name java/sql/PseudoColumnUsage
header extends java/lang/Enum flags 4031 signature Ljava/lang/Enum<Ljava/sql/PseudoColumnUsage;>; classAnnotations @Ljdk/Profile+Annotation;(value=I2)
field name SELECT_LIST_ONLY descriptor Ljava/sql/PseudoColumnUsage; flags 4019
field name WHERE_CLAUSE_ONLY descriptor Ljava/sql/PseudoColumnUsage; flags 4019
field name NO_USAGE_RESTRICTIONS descriptor Ljava/sql/PseudoColumnUsage; flags 4019
field name USAGE_UNKNOWN descriptor Ljava/sql/PseudoColumnUsage; flags 4019
method name values descriptor ()[Ljava/sql/PseudoColumnUsage; flags 9
method name valueOf descriptor (Ljava/lang/String;)Ljava/sql/PseudoColumnUsage; flags 9
class name java/sql/Ref
header extends java/lang/Object flags 601 classAnnotations @Ljdk/Profile+Annotation;(value=I2)
method name getBaseTypeName descriptor ()Ljava/lang/String; thrownTypes java/sql/SQLException flags 401
method name getObject descriptor (Ljava/util/Map;)Ljava/lang/Object; thrownTypes java/sql/SQLException flags 401 signature (Ljava/util/Map<Ljava/lang/String;Ljava/lang/Class<*>;>;)Ljava/lang/Object;
method name getObject descriptor ()Ljava/lang/Object; thrownTypes java/sql/SQLException flags 401
method name setObject descriptor (Ljava/lang/Object;)V thrownTypes java/sql/SQLException flags 401
class name java/sql/ResultSet
header extends java/lang/Object implements java/sql/Wrapper,java/lang/AutoCloseable flags 601 classAnnotations @Ljdk/Profile+Annotation;(value=I2)
field name FETCH_FORWARD descriptor I constantValue 1000 flags 19
field name FETCH_REVERSE descriptor I constantValue 1001 flags 19
field name FETCH_UNKNOWN descriptor I constantValue 1002 flags 19
field name TYPE_FORWARD_ONLY descriptor I constantValue 1003 flags 19
field name TYPE_SCROLL_INSENSITIVE descriptor I constantValue 1004 flags 19
field name TYPE_SCROLL_SENSITIVE descriptor I constantValue 1005 flags 19
field name CONCUR_READ_ONLY descriptor I constantValue 1007 flags 19
field name CONCUR_UPDATABLE descriptor I constantValue 1008 flags 19
field name HOLD_CURSORS_OVER_COMMIT descriptor I constantValue 1 flags 19
field name CLOSE_CURSORS_AT_COMMIT descriptor I constantValue 2 flags 19
method name next descriptor ()Z thrownTypes java/sql/SQLException flags 401
method name close descriptor ()V thrownTypes java/sql/SQLException flags 401
method name wasNull descriptor ()Z thrownTypes java/sql/SQLException flags 401
method name getString descriptor (I)Ljava/lang/String; thrownTypes java/sql/SQLException flags 401
method name getBoolean descriptor (I)Z thrownTypes java/sql/SQLException flags 401
method name getByte descriptor (I)B thrownTypes java/sql/SQLException flags 401
method name getShort descriptor (I)S thrownTypes java/sql/SQLException flags 401
method name getInt descriptor (I)I thrownTypes java/sql/SQLException flags 401
method name getLong descriptor (I)J thrownTypes java/sql/SQLException flags 401
method name getFloat descriptor (I)F thrownTypes java/sql/SQLException flags 401
method name getDouble descriptor (I)D thrownTypes java/sql/SQLException flags 401
method name getBigDecimal descriptor (II)Ljava/math/BigDecimal; thrownTypes java/sql/SQLException flags 401 deprecated true runtimeAnnotations @Ljava/lang/Deprecated;
method name getBytes descriptor (I)[B thrownTypes java/sql/SQLException flags 401
method name getDate descriptor (I)Ljava/sql/Date; thrownTypes java/sql/SQLException flags 401
method name getTime descriptor (I)Ljava/sql/Time; thrownTypes java/sql/SQLException flags 401
method name getTimestamp descriptor (I)Ljava/sql/Timestamp; thrownTypes java/sql/SQLException flags 401
method name getAsciiStream descriptor (I)Ljava/io/InputStream; thrownTypes java/sql/SQLException flags 401
method name getUnicodeStream descriptor (I)Ljava/io/InputStream; thrownTypes java/sql/SQLException flags 401 deprecated true runtimeAnnotations @Ljava/lang/Deprecated;
method name getBinaryStream descriptor (I)Ljava/io/InputStream; thrownTypes java/sql/SQLException flags 401
method name getString descriptor (Ljava/lang/String;)Ljava/lang/String; thrownTypes java/sql/SQLException flags 401
method name getBoolean descriptor (Ljava/lang/String;)Z thrownTypes java/sql/SQLException flags 401
method name getByte descriptor (Ljava/lang/String;)B thrownTypes java/sql/SQLException flags 401
method name getShort descriptor (Ljava/lang/String;)S thrownTypes java/sql/SQLException flags 401
method name getInt descriptor (Ljava/lang/String;)I thrownTypes java/sql/SQLException flags 401
method name getLong descriptor (Ljava/lang/String;)J thrownTypes java/sql/SQLException flags 401
method name getFloat descriptor (Ljava/lang/String;)F thrownTypes java/sql/SQLException flags 401
method name getDouble descriptor (Ljava/lang/String;)D thrownTypes java/sql/SQLException flags 401
method name getBigDecimal descriptor (Ljava/lang/String;I)Ljava/math/BigDecimal; thrownTypes java/sql/SQLException flags 401 deprecated true runtimeAnnotations @Ljava/lang/Deprecated;
method name getBytes descriptor (Ljava/lang/String;)[B thrownTypes java/sql/SQLException flags 401
method name getDate descriptor (Ljava/lang/String;)Ljava/sql/Date; thrownTypes java/sql/SQLException flags 401
method name getTime descriptor (Ljava/lang/String;)Ljava/sql/Time; thrownTypes java/sql/SQLException flags 401
method name getTimestamp descriptor (Ljava/lang/String;)Ljava/sql/Timestamp; thrownTypes java/sql/SQLException flags 401
method name getAsciiStream descriptor (Ljava/lang/String;)Ljava/io/InputStream; thrownTypes java/sql/SQLException flags 401
method name getUnicodeStream descriptor (Ljava/lang/String;)Ljava/io/InputStream; thrownTypes java/sql/SQLException flags 401 deprecated true runtimeAnnotations @Ljava/lang/Deprecated;
method name getBinaryStream descriptor (Ljava/lang/String;)Ljava/io/InputStream; thrownTypes java/sql/SQLException flags 401
method name getWarnings descriptor ()Ljava/sql/SQLWarning; thrownTypes java/sql/SQLException flags 401
method name clearWarnings descriptor ()V thrownTypes java/sql/SQLException flags 401
method name getCursorName descriptor ()Ljava/lang/String; thrownTypes java/sql/SQLException flags 401
method name getMetaData descriptor ()Ljava/sql/ResultSetMetaData; thrownTypes java/sql/SQLException flags 401
method name getObject descriptor (I)Ljava/lang/Object; thrownTypes java/sql/SQLException flags 401
method name getObject descriptor (Ljava/lang/String;)Ljava/lang/Object; thrownTypes java/sql/SQLException flags 401
method name findColumn descriptor (Ljava/lang/String;)I thrownTypes java/sql/SQLException flags 401
method name getCharacterStream descriptor (I)Ljava/io/Reader; thrownTypes java/sql/SQLException flags 401
method name getCharacterStream descriptor (Ljava/lang/String;)Ljava/io/Reader; thrownTypes java/sql/SQLException flags 401
method name getBigDecimal descriptor (I)Ljava/math/BigDecimal; thrownTypes java/sql/SQLException flags 401
method name getBigDecimal descriptor (Ljava/lang/String;)Ljava/math/BigDecimal; thrownTypes java/sql/SQLException flags 401
method name isBeforeFirst descriptor ()Z thrownTypes java/sql/SQLException flags 401
method name isAfterLast descriptor ()Z thrownTypes java/sql/SQLException flags 401
method name isFirst descriptor ()Z thrownTypes java/sql/SQLException flags 401
method name isLast descriptor ()Z thrownTypes java/sql/SQLException flags 401
method name beforeFirst descriptor ()V thrownTypes java/sql/SQLException flags 401
method name afterLast descriptor ()V thrownTypes java/sql/SQLException flags 401
method name first descriptor ()Z thrownTypes java/sql/SQLException flags 401
method name last descriptor ()Z thrownTypes java/sql/SQLException flags 401
method name getRow descriptor ()I thrownTypes java/sql/SQLException flags 401
method name absolute descriptor (I)Z thrownTypes java/sql/SQLException flags 401
method name relative descriptor (I)Z thrownTypes java/sql/SQLException flags 401
method name previous descriptor ()Z thrownTypes java/sql/SQLException flags 401
method name setFetchDirection descriptor (I)V thrownTypes java/sql/SQLException flags 401
method name getFetchDirection descriptor ()I thrownTypes java/sql/SQLException flags 401
method name setFetchSize descriptor (I)V thrownTypes java/sql/SQLException flags 401
method name getFetchSize descriptor ()I thrownTypes java/sql/SQLException flags 401
method name getType descriptor ()I thrownTypes java/sql/SQLException flags 401
method name getConcurrency descriptor ()I thrownTypes java/sql/SQLException flags 401
method name rowUpdated descriptor ()Z thrownTypes java/sql/SQLException flags 401
method name rowInserted descriptor ()Z thrownTypes java/sql/SQLException flags 401
method name rowDeleted descriptor ()Z thrownTypes java/sql/SQLException flags 401
method name updateNull descriptor (I)V thrownTypes java/sql/SQLException flags 401
method name updateBoolean descriptor (IZ)V thrownTypes java/sql/SQLException flags 401
method name updateByte descriptor (IB)V thrownTypes java/sql/SQLException flags 401
method name updateShort descriptor (IS)V thrownTypes java/sql/SQLException flags 401
method name updateInt descriptor (II)V thrownTypes java/sql/SQLException flags 401
method name updateLong descriptor (IJ)V thrownTypes java/sql/SQLException flags 401
method name updateFloat descriptor (IF)V thrownTypes java/sql/SQLException flags 401
method name updateDouble descriptor (ID)V thrownTypes java/sql/SQLException flags 401
method name updateBigDecimal descriptor (ILjava/math/BigDecimal;)V thrownTypes java/sql/SQLException flags 401
method name updateString descriptor (ILjava/lang/String;)V thrownTypes java/sql/SQLException flags 401
method name updateBytes descriptor (I[B)V thrownTypes java/sql/SQLException flags 401
method name updateDate descriptor (ILjava/sql/Date;)V thrownTypes java/sql/SQLException flags 401
method name updateTime descriptor (ILjava/sql/Time;)V thrownTypes java/sql/SQLException flags 401
method name updateTimestamp descriptor (ILjava/sql/Timestamp;)V thrownTypes java/sql/SQLException flags 401
method name updateAsciiStream descriptor (ILjava/io/InputStream;I)V thrownTypes java/sql/SQLException flags 401
method name updateBinaryStream descriptor (ILjava/io/InputStream;I)V thrownTypes java/sql/SQLException flags 401
method name updateCharacterStream descriptor (ILjava/io/Reader;I)V thrownTypes java/sql/SQLException flags 401
method name updateObject descriptor (ILjava/lang/Object;I)V thrownTypes java/sql/SQLException flags 401
method name updateObject descriptor (ILjava/lang/Object;)V thrownTypes java/sql/SQLException flags 401
method name updateNull descriptor (Ljava/lang/String;)V thrownTypes java/sql/SQLException flags 401
method name updateBoolean descriptor (Ljava/lang/String;Z)V thrownTypes java/sql/SQLException flags 401
method name updateByte descriptor (Ljava/lang/String;B)V thrownTypes java/sql/SQLException flags 401
method name updateShort descriptor (Ljava/lang/String;S)V thrownTypes java/sql/SQLException flags 401
method name updateInt descriptor (Ljava/lang/String;I)V thrownTypes java/sql/SQLException flags 401
method name updateLong descriptor (Ljava/lang/String;J)V thrownTypes java/sql/SQLException flags 401
method name updateFloat descriptor (Ljava/lang/String;F)V thrownTypes java/sql/SQLException flags 401
method name updateDouble descriptor (Ljava/lang/String;D)V thrownTypes java/sql/SQLException flags 401
method name updateBigDecimal descriptor (Ljava/lang/String;Ljava/math/BigDecimal;)V thrownTypes java/sql/SQLException flags 401
method name updateString descriptor (Ljava/lang/String;Ljava/lang/String;)V thrownTypes java/sql/SQLException flags 401
method name updateBytes descriptor (Ljava/lang/String;[B)V thrownTypes java/sql/SQLException flags 401
method name updateDate descriptor (Ljava/lang/String;Ljava/sql/Date;)V thrownTypes java/sql/SQLException flags 401
method name updateTime descriptor (Ljava/lang/String;Ljava/sql/Time;)V thrownTypes java/sql/SQLException flags 401
method name updateTimestamp descriptor (Ljava/lang/String;Ljava/sql/Timestamp;)V thrownTypes java/sql/SQLException flags 401
method name updateAsciiStream descriptor (Ljava/lang/String;Ljava/io/InputStream;I)V thrownTypes java/sql/SQLException flags 401
method name updateBinaryStream descriptor (Ljava/lang/String;Ljava/io/InputStream;I)V thrownTypes java/sql/SQLException flags 401
method name updateCharacterStream descriptor (Ljava/lang/String;Ljava/io/Reader;I)V thrownTypes java/sql/SQLException flags 401
method name updateObject descriptor (Ljava/lang/String;Ljava/lang/Object;I)V thrownTypes java/sql/SQLException flags 401
method name updateObject descriptor (Ljava/lang/String;Ljava/lang/Object;)V thrownTypes java/sql/SQLException flags 401
method name insertRow descriptor ()V thrownTypes java/sql/SQLException flags 401
method name updateRow descriptor ()V thrownTypes java/sql/SQLException flags 401
method name deleteRow descriptor ()V thrownTypes java/sql/SQLException flags 401
method name refreshRow descriptor ()V thrownTypes java/sql/SQLException flags 401
method name cancelRowUpdates descriptor ()V thrownTypes java/sql/SQLException flags 401
method name moveToInsertRow descriptor ()V thrownTypes java/sql/SQLException flags 401
method name moveToCurrentRow descriptor ()V thrownTypes java/sql/SQLException flags 401
method name getStatement descriptor ()Ljava/sql/Statement; thrownTypes java/sql/SQLException flags 401
method name getObject descriptor (ILjava/util/Map;)Ljava/lang/Object; thrownTypes java/sql/SQLException flags 401 signature (ILjava/util/Map<Ljava/lang/String;Ljava/lang/Class<*>;>;)Ljava/lang/Object;
method name getRef descriptor (I)Ljava/sql/Ref; thrownTypes java/sql/SQLException flags 401
method name getBlob descriptor (I)Ljava/sql/Blob; thrownTypes java/sql/SQLException flags 401
method name getClob descriptor (I)Ljava/sql/Clob; thrownTypes java/sql/SQLException flags 401
method name getArray descriptor (I)Ljava/sql/Array; thrownTypes java/sql/SQLException flags 401
method name getObject descriptor (Ljava/lang/String;Ljava/util/Map;)Ljava/lang/Object; thrownTypes java/sql/SQLException flags 401 signature (Ljava/lang/String;Ljava/util/Map<Ljava/lang/String;Ljava/lang/Class<*>;>;)Ljava/lang/Object;
method name getRef descriptor (Ljava/lang/String;)Ljava/sql/Ref; thrownTypes java/sql/SQLException flags 401
method name getBlob descriptor (Ljava/lang/String;)Ljava/sql/Blob; thrownTypes java/sql/SQLException flags 401
method name getClob descriptor (Ljava/lang/String;)Ljava/sql/Clob; thrownTypes java/sql/SQLException flags 401
method name getArray descriptor (Ljava/lang/String;)Ljava/sql/Array; thrownTypes java/sql/SQLException flags 401
method name getDate descriptor (ILjava/util/Calendar;)Ljava/sql/Date; thrownTypes java/sql/SQLException flags 401
method name getDate descriptor (Ljava/lang/String;Ljava/util/Calendar;)Ljava/sql/Date; thrownTypes java/sql/SQLException flags 401
method name getTime descriptor (ILjava/util/Calendar;)Ljava/sql/Time; thrownTypes java/sql/SQLException flags 401
method name getTime descriptor (Ljava/lang/String;Ljava/util/Calendar;)Ljava/sql/Time; thrownTypes java/sql/SQLException flags 401
method name getTimestamp descriptor (ILjava/util/Calendar;)Ljava/sql/Timestamp; thrownTypes java/sql/SQLException flags 401
method name getTimestamp descriptor (Ljava/lang/String;Ljava/util/Calendar;)Ljava/sql/Timestamp; thrownTypes java/sql/SQLException flags 401
method name getURL descriptor (I)Ljava/net/URL; thrownTypes java/sql/SQLException flags 401
method name getURL descriptor (Ljava/lang/String;)Ljava/net/URL; thrownTypes java/sql/SQLException flags 401
method name updateRef descriptor (ILjava/sql/Ref;)V thrownTypes java/sql/SQLException flags 401
method name updateRef descriptor (Ljava/lang/String;Ljava/sql/Ref;)V thrownTypes java/sql/SQLException flags 401
method name updateBlob descriptor (ILjava/sql/Blob;)V thrownTypes java/sql/SQLException flags 401
method name updateBlob descriptor (Ljava/lang/String;Ljava/sql/Blob;)V thrownTypes java/sql/SQLException flags 401
method name updateClob descriptor (ILjava/sql/Clob;)V thrownTypes java/sql/SQLException flags 401
method name updateClob descriptor (Ljava/lang/String;Ljava/sql/Clob;)V thrownTypes java/sql/SQLException flags 401
method name updateArray descriptor (ILjava/sql/Array;)V thrownTypes java/sql/SQLException flags 401
method name updateArray descriptor (Ljava/lang/String;Ljava/sql/Array;)V thrownTypes java/sql/SQLException flags 401
method name getRowId descriptor (I)Ljava/sql/RowId; thrownTypes java/sql/SQLException flags 401
method name getRowId descriptor (Ljava/lang/String;)Ljava/sql/RowId; thrownTypes java/sql/SQLException flags 401
method name updateRowId descriptor (ILjava/sql/RowId;)V thrownTypes java/sql/SQLException flags 401
method name updateRowId descriptor (Ljava/lang/String;Ljava/sql/RowId;)V thrownTypes java/sql/SQLException flags 401
method name getHoldability descriptor ()I thrownTypes java/sql/SQLException flags 401
method name isClosed descriptor ()Z thrownTypes java/sql/SQLException flags 401
method name updateNString descriptor (ILjava/lang/String;)V thrownTypes java/sql/SQLException flags 401
method name updateNString descriptor (Ljava/lang/String;Ljava/lang/String;)V thrownTypes java/sql/SQLException flags 401
method name updateNClob descriptor (ILjava/sql/NClob;)V thrownTypes java/sql/SQLException flags 401
method name updateNClob descriptor (Ljava/lang/String;Ljava/sql/NClob;)V thrownTypes java/sql/SQLException flags 401
method name getNClob descriptor (I)Ljava/sql/NClob; thrownTypes java/sql/SQLException flags 401
method name getNClob descriptor (Ljava/lang/String;)Ljava/sql/NClob; thrownTypes java/sql/SQLException flags 401
method name getSQLXML descriptor (I)Ljava/sql/SQLXML; thrownTypes java/sql/SQLException flags 401
method name getSQLXML descriptor (Ljava/lang/String;)Ljava/sql/SQLXML; thrownTypes java/sql/SQLException flags 401
method name updateSQLXML descriptor (ILjava/sql/SQLXML;)V thrownTypes java/sql/SQLException flags 401
method name updateSQLXML descriptor (Ljava/lang/String;Ljava/sql/SQLXML;)V thrownTypes java/sql/SQLException flags 401
method name getNString descriptor (I)Ljava/lang/String; thrownTypes java/sql/SQLException flags 401
method name getNString descriptor (Ljava/lang/String;)Ljava/lang/String; thrownTypes java/sql/SQLException flags 401
method name getNCharacterStream descriptor (I)Ljava/io/Reader; thrownTypes java/sql/SQLException flags 401
method name getNCharacterStream descriptor (Ljava/lang/String;)Ljava/io/Reader; thrownTypes java/sql/SQLException flags 401
method name updateNCharacterStream descriptor (ILjava/io/Reader;J)V thrownTypes java/sql/SQLException flags 401
method name updateNCharacterStream descriptor (Ljava/lang/String;Ljava/io/Reader;J)V thrownTypes java/sql/SQLException flags 401
method name updateAsciiStream descriptor (ILjava/io/InputStream;J)V thrownTypes java/sql/SQLException flags 401
method name updateBinaryStream descriptor (ILjava/io/InputStream;J)V thrownTypes java/sql/SQLException flags 401
method name updateCharacterStream descriptor (ILjava/io/Reader;J)V thrownTypes java/sql/SQLException flags 401
method name updateAsciiStream descriptor (Ljava/lang/String;Ljava/io/InputStream;J)V thrownTypes java/sql/SQLException flags 401
method name updateBinaryStream descriptor (Ljava/lang/String;Ljava/io/InputStream;J)V thrownTypes java/sql/SQLException flags 401
method name updateCharacterStream descriptor (Ljava/lang/String;Ljava/io/Reader;J)V thrownTypes java/sql/SQLException flags 401
method name updateBlob descriptor (ILjava/io/InputStream;J)V thrownTypes java/sql/SQLException flags 401
method name updateBlob descriptor (Ljava/lang/String;Ljava/io/InputStream;J)V thrownTypes java/sql/SQLException flags 401
method name updateClob descriptor (ILjava/io/Reader;J)V thrownTypes java/sql/SQLException flags 401
method name updateClob descriptor (Ljava/lang/String;Ljava/io/Reader;J)V thrownTypes java/sql/SQLException flags 401
method name updateNClob descriptor (ILjava/io/Reader;J)V thrownTypes java/sql/SQLException flags 401
method name updateNClob descriptor (Ljava/lang/String;Ljava/io/Reader;J)V thrownTypes java/sql/SQLException flags 401
method name updateNCharacterStream descriptor (ILjava/io/Reader;)V thrownTypes java/sql/SQLException flags 401
method name updateNCharacterStream descriptor (Ljava/lang/String;Ljava/io/Reader;)V thrownTypes java/sql/SQLException flags 401
method name updateAsciiStream descriptor (ILjava/io/InputStream;)V thrownTypes java/sql/SQLException flags 401
method name updateBinaryStream descriptor (ILjava/io/InputStream;)V thrownTypes java/sql/SQLException flags 401
method name updateCharacterStream descriptor (ILjava/io/Reader;)V thrownTypes java/sql/SQLException flags 401
method name updateAsciiStream descriptor (Ljava/lang/String;Ljava/io/InputStream;)V thrownTypes java/sql/SQLException flags 401
method name updateBinaryStream descriptor (Ljava/lang/String;Ljava/io/InputStream;)V thrownTypes java/sql/SQLException flags 401
method name updateCharacterStream descriptor (Ljava/lang/String;Ljava/io/Reader;)V thrownTypes java/sql/SQLException flags 401
method name updateBlob descriptor (ILjava/io/InputStream;)V thrownTypes java/sql/SQLException flags 401
method name updateBlob descriptor (Ljava/lang/String;Ljava/io/InputStream;)V thrownTypes java/sql/SQLException flags 401
method name updateClob descriptor (ILjava/io/Reader;)V thrownTypes java/sql/SQLException flags 401
method name updateClob descriptor (Ljava/lang/String;Ljava/io/Reader;)V thrownTypes java/sql/SQLException flags 401
method name updateNClob descriptor (ILjava/io/Reader;)V thrownTypes java/sql/SQLException flags 401
method name updateNClob descriptor (Ljava/lang/String;Ljava/io/Reader;)V thrownTypes java/sql/SQLException flags 401
method name getObject descriptor (ILjava/lang/Class;)Ljava/lang/Object; thrownTypes java/sql/SQLException flags 401 signature <T:Ljava/lang/Object;>(ILjava/lang/Class<TT;>;)TT;
method name getObject descriptor (Ljava/lang/String;Ljava/lang/Class;)Ljava/lang/Object; thrownTypes java/sql/SQLException flags 401 signature <T:Ljava/lang/Object;>(Ljava/lang/String;Ljava/lang/Class<TT;>;)TT;
method name updateObject descriptor (ILjava/lang/Object;Ljava/sql/SQLType;I)V thrownTypes java/sql/SQLException flags 1
method name updateObject descriptor (Ljava/lang/String;Ljava/lang/Object;Ljava/sql/SQLType;I)V thrownTypes java/sql/SQLException flags 1
method name updateObject descriptor (ILjava/lang/Object;Ljava/sql/SQLType;)V thrownTypes java/sql/SQLException flags 1
method name updateObject descriptor (Ljava/lang/String;Ljava/lang/Object;Ljava/sql/SQLType;)V thrownTypes java/sql/SQLException flags 1
class name java/sql/ResultSetMetaData
header extends java/lang/Object implements java/sql/Wrapper flags 601 classAnnotations @Ljdk/Profile+Annotation;(value=I2)
field name columnNoNulls descriptor I constantValue 0 flags 19
field name columnNullable descriptor I constantValue 1 flags 19
field name columnNullableUnknown descriptor I constantValue 2 flags 19
method name getColumnCount descriptor ()I thrownTypes java/sql/SQLException flags 401
method name isAutoIncrement descriptor (I)Z thrownTypes java/sql/SQLException flags 401
method name isCaseSensitive descriptor (I)Z thrownTypes java/sql/SQLException flags 401
method name isSearchable descriptor (I)Z thrownTypes java/sql/SQLException flags 401
method name isCurrency descriptor (I)Z thrownTypes java/sql/SQLException flags 401
method name isNullable descriptor (I)I thrownTypes java/sql/SQLException flags 401
method name isSigned descriptor (I)Z thrownTypes java/sql/SQLException flags 401
method name getColumnDisplaySize descriptor (I)I thrownTypes java/sql/SQLException flags 401
method name getColumnLabel descriptor (I)Ljava/lang/String; thrownTypes java/sql/SQLException flags 401
method name getColumnName descriptor (I)Ljava/lang/String; thrownTypes java/sql/SQLException flags 401
method name getSchemaName descriptor (I)Ljava/lang/String; thrownTypes java/sql/SQLException flags 401
method name getPrecision descriptor (I)I thrownTypes java/sql/SQLException flags 401
method name getScale descriptor (I)I thrownTypes java/sql/SQLException flags 401
method name getTableName descriptor (I)Ljava/lang/String; thrownTypes java/sql/SQLException flags 401
method name getCatalogName descriptor (I)Ljava/lang/String; thrownTypes java/sql/SQLException flags 401
method name getColumnType descriptor (I)I thrownTypes java/sql/SQLException flags 401
method name getColumnTypeName descriptor (I)Ljava/lang/String; thrownTypes java/sql/SQLException flags 401
method name isReadOnly descriptor (I)Z thrownTypes java/sql/SQLException flags 401
method name isWritable descriptor (I)Z thrownTypes java/sql/SQLException flags 401
method name isDefinitelyWritable descriptor (I)Z thrownTypes java/sql/SQLException flags 401
method name getColumnClassName descriptor (I)Ljava/lang/String; thrownTypes java/sql/SQLException flags 401
class name java/sql/RowId
header extends java/lang/Object flags 601 classAnnotations @Ljdk/Profile+Annotation;(value=I2)
method name equals descriptor (Ljava/lang/Object;)Z flags 401
method name getBytes descriptor ()[B flags 401
method name toString descriptor ()Ljava/lang/String; flags 401
method name hashCode descriptor ()I flags 401
class name java/sql/RowIdLifetime
header extends java/lang/Enum flags 4031 signature Ljava/lang/Enum<Ljava/sql/RowIdLifetime;>; classAnnotations @Ljdk/Profile+Annotation;(value=I2)
field name ROWID_UNSUPPORTED descriptor Ljava/sql/RowIdLifetime; flags 4019
field name ROWID_VALID_OTHER descriptor Ljava/sql/RowIdLifetime; flags 4019
field name ROWID_VALID_SESSION descriptor Ljava/sql/RowIdLifetime; flags 4019
field name ROWID_VALID_TRANSACTION descriptor Ljava/sql/RowIdLifetime; flags 4019
field name ROWID_VALID_FOREVER descriptor Ljava/sql/RowIdLifetime; flags 4019
method name values descriptor ()[Ljava/sql/RowIdLifetime; flags 9
method name valueOf descriptor (Ljava/lang/String;)Ljava/sql/RowIdLifetime; flags 9
class name java/sql/SQLClientInfoException
header extends java/sql/SQLException flags 21 classAnnotations @Ljdk/Profile+Annotation;(value=I2)
method name <init> descriptor ()V flags 1
method name <init> descriptor (Ljava/util/Map;)V flags 1 signature (Ljava/util/Map<Ljava/lang/String;Ljava/sql/ClientInfoStatus;>;)V
method name <init> descriptor (Ljava/util/Map;Ljava/lang/Throwable;)V flags 1 signature (Ljava/util/Map<Ljava/lang/String;Ljava/sql/ClientInfoStatus;>;Ljava/lang/Throwable;)V
method name <init> descriptor (Ljava/lang/String;Ljava/util/Map;)V flags 1 signature (Ljava/lang/String;Ljava/util/Map<Ljava/lang/String;Ljava/sql/ClientInfoStatus;>;)V
method name <init> descriptor (Ljava/lang/String;Ljava/util/Map;Ljava/lang/Throwable;)V flags 1 signature (Ljava/lang/String;Ljava/util/Map<Ljava/lang/String;Ljava/sql/ClientInfoStatus;>;Ljava/lang/Throwable;)V
method name <init> descriptor (Ljava/lang/String;Ljava/lang/String;Ljava/util/Map;)V flags 1 signature (Ljava/lang/String;Ljava/lang/String;Ljava/util/Map<Ljava/lang/String;Ljava/sql/ClientInfoStatus;>;)V
method name <init> descriptor (Ljava/lang/String;Ljava/lang/String;Ljava/util/Map;Ljava/lang/Throwable;)V flags 1 signature (Ljava/lang/String;Ljava/lang/String;Ljava/util/Map<Ljava/lang/String;Ljava/sql/ClientInfoStatus;>;Ljava/lang/Throwable;)V
method name <init> descriptor (Ljava/lang/String;Ljava/lang/String;ILjava/util/Map;)V flags 1 signature (Ljava/lang/String;Ljava/lang/String;ILjava/util/Map<Ljava/lang/String;Ljava/sql/ClientInfoStatus;>;)V
method name <init> descriptor (Ljava/lang/String;Ljava/lang/String;ILjava/util/Map;Ljava/lang/Throwable;)V flags 1 signature (Ljava/lang/String;Ljava/lang/String;ILjava/util/Map<Ljava/lang/String;Ljava/sql/ClientInfoStatus;>;Ljava/lang/Throwable;)V
method name getFailedProperties descriptor ()Ljava/util/Map; flags 1 signature ()Ljava/util/Map<Ljava/lang/String;Ljava/sql/ClientInfoStatus;>;
class name java/sql/SQLData
header extends java/lang/Object flags 601 classAnnotations @Ljdk/Profile+Annotation;(value=I2)
method name getSQLTypeName descriptor ()Ljava/lang/String; thrownTypes java/sql/SQLException flags 401
method name readSQL descriptor (Ljava/sql/SQLInput;Ljava/lang/String;)V thrownTypes java/sql/SQLException flags 401
method name writeSQL descriptor (Ljava/sql/SQLOutput;)V thrownTypes java/sql/SQLException flags 401
class name java/sql/SQLDataException
header extends java/sql/SQLNonTransientException flags 21 classAnnotations @Ljdk/Profile+Annotation;(value=I2)
method name <init> descriptor ()V flags 1
method name <init> descriptor (Ljava/lang/String;)V flags 1
method name <init> descriptor (Ljava/lang/String;Ljava/lang/String;)V flags 1
method name <init> descriptor (Ljava/lang/String;Ljava/lang/String;I)V flags 1
method name <init> descriptor (Ljava/lang/Throwable;)V flags 1
method name <init> descriptor (Ljava/lang/String;Ljava/lang/Throwable;)V flags 1
method name <init> descriptor (Ljava/lang/String;Ljava/lang/String;Ljava/lang/Throwable;)V flags 1
method name <init> descriptor (Ljava/lang/String;Ljava/lang/String;ILjava/lang/Throwable;)V flags 1
class name java/sql/SQLException
header extends java/lang/Exception implements java/lang/Iterable flags 21 signature Ljava/lang/Exception;Ljava/lang/Iterable<Ljava/lang/Throwable;>; classAnnotations @Ljdk/Profile+Annotation;(value=I2)
method name <init> descriptor (Ljava/lang/String;Ljava/lang/String;I)V flags 1
method name <init> descriptor (Ljava/lang/String;Ljava/lang/String;)V flags 1
method name <init> descriptor (Ljava/lang/String;)V flags 1
method name <init> descriptor ()V flags 1
method name <init> descriptor (Ljava/lang/Throwable;)V flags 1
method name <init> descriptor (Ljava/lang/String;Ljava/lang/Throwable;)V flags 1
method name <init> descriptor (Ljava/lang/String;Ljava/lang/String;Ljava/lang/Throwable;)V flags 1
method name <init> descriptor (Ljava/lang/String;Ljava/lang/String;ILjava/lang/Throwable;)V flags 1
method name getSQLState descriptor ()Ljava/lang/String; flags 1
method name getErrorCode descriptor ()I flags 1
method name getNextException descriptor ()Ljava/sql/SQLException; flags 1
method name setNextException descriptor (Ljava/sql/SQLException;)V flags 1
method name iterator descriptor ()Ljava/util/Iterator; flags 1 signature ()Ljava/util/Iterator<Ljava/lang/Throwable;>;
class name java/sql/SQLFeatureNotSupportedException
header extends java/sql/SQLNonTransientException flags 21 classAnnotations @Ljdk/Profile+Annotation;(value=I2)
method name <init> descriptor ()V flags 1
method name <init> descriptor (Ljava/lang/String;)V flags 1
method name <init> descriptor (Ljava/lang/String;Ljava/lang/String;)V flags 1
method name <init> descriptor (Ljava/lang/String;Ljava/lang/String;I)V flags 1
method name <init> descriptor (Ljava/lang/Throwable;)V flags 1
method name <init> descriptor (Ljava/lang/String;Ljava/lang/Throwable;)V flags 1
method name <init> descriptor (Ljava/lang/String;Ljava/lang/String;Ljava/lang/Throwable;)V flags 1
method name <init> descriptor (Ljava/lang/String;Ljava/lang/String;ILjava/lang/Throwable;)V flags 1
class name java/sql/SQLInput
header extends java/lang/Object flags 601 classAnnotations @Ljdk/Profile+Annotation;(value=I2)
method name readString descriptor ()Ljava/lang/String; thrownTypes java/sql/SQLException flags 401
method name readBoolean descriptor ()Z thrownTypes java/sql/SQLException flags 401
method name readByte descriptor ()B thrownTypes java/sql/SQLException flags 401
method name readShort descriptor ()S thrownTypes java/sql/SQLException flags 401
method name readInt descriptor ()I thrownTypes java/sql/SQLException flags 401
method name readLong descriptor ()J thrownTypes java/sql/SQLException flags 401
method name readFloat descriptor ()F thrownTypes java/sql/SQLException flags 401
method name readDouble descriptor ()D thrownTypes java/sql/SQLException flags 401
method name readBigDecimal descriptor ()Ljava/math/BigDecimal; thrownTypes java/sql/SQLException flags 401
method name readBytes descriptor ()[B thrownTypes java/sql/SQLException flags 401
method name readDate descriptor ()Ljava/sql/Date; thrownTypes java/sql/SQLException flags 401
method name readTime descriptor ()Ljava/sql/Time; thrownTypes java/sql/SQLException flags 401
method name readTimestamp descriptor ()Ljava/sql/Timestamp; thrownTypes java/sql/SQLException flags 401
method name readCharacterStream descriptor ()Ljava/io/Reader; thrownTypes java/sql/SQLException flags 401
method name readAsciiStream descriptor ()Ljava/io/InputStream; thrownTypes java/sql/SQLException flags 401
method name readBinaryStream descriptor ()Ljava/io/InputStream; thrownTypes java/sql/SQLException flags 401
method name readObject descriptor ()Ljava/lang/Object; thrownTypes java/sql/SQLException flags 401
method name readRef descriptor ()Ljava/sql/Ref; thrownTypes java/sql/SQLException flags 401
method name readBlob descriptor ()Ljava/sql/Blob; thrownTypes java/sql/SQLException flags 401
method name readClob descriptor ()Ljava/sql/Clob; thrownTypes java/sql/SQLException flags 401
method name readArray descriptor ()Ljava/sql/Array; thrownTypes java/sql/SQLException flags 401
method name wasNull descriptor ()Z thrownTypes java/sql/SQLException flags 401
method name readURL descriptor ()Ljava/net/URL; thrownTypes java/sql/SQLException flags 401
method name readNClob descriptor ()Ljava/sql/NClob; thrownTypes java/sql/SQLException flags 401
method name readNString descriptor ()Ljava/lang/String; thrownTypes java/sql/SQLException flags 401
method name readSQLXML descriptor ()Ljava/sql/SQLXML; thrownTypes java/sql/SQLException flags 401
method name readRowId descriptor ()Ljava/sql/RowId; thrownTypes java/sql/SQLException flags 401
method name readObject descriptor (Ljava/lang/Class;)Ljava/lang/Object; thrownTypes java/sql/SQLException flags 1 signature <T:Ljava/lang/Object;>(Ljava/lang/Class<TT;>;)TT;
class name java/sql/SQLIntegrityConstraintViolationException
header extends java/sql/SQLNonTransientException flags 21 classAnnotations @Ljdk/Profile+Annotation;(value=I2)
method name <init> descriptor ()V flags 1
method name <init> descriptor (Ljava/lang/String;)V flags 1
method name <init> descriptor (Ljava/lang/String;Ljava/lang/String;)V flags 1
method name <init> descriptor (Ljava/lang/String;Ljava/lang/String;I)V flags 1
method name <init> descriptor (Ljava/lang/Throwable;)V flags 1
method name <init> descriptor (Ljava/lang/String;Ljava/lang/Throwable;)V flags 1
method name <init> descriptor (Ljava/lang/String;Ljava/lang/String;Ljava/lang/Throwable;)V flags 1
method name <init> descriptor (Ljava/lang/String;Ljava/lang/String;ILjava/lang/Throwable;)V flags 1
class name java/sql/SQLInvalidAuthorizationSpecException
header extends java/sql/SQLNonTransientException flags 21 classAnnotations @Ljdk/Profile+Annotation;(value=I2)
method name <init> descriptor ()V flags 1
method name <init> descriptor (Ljava/lang/String;)V flags 1
method name <init> descriptor (Ljava/lang/String;Ljava/lang/String;)V flags 1
method name <init> descriptor (Ljava/lang/String;Ljava/lang/String;I)V flags 1
method name <init> descriptor (Ljava/lang/Throwable;)V flags 1
method name <init> descriptor (Ljava/lang/String;Ljava/lang/Throwable;)V flags 1
method name <init> descriptor (Ljava/lang/String;Ljava/lang/String;Ljava/lang/Throwable;)V flags 1
method name <init> descriptor (Ljava/lang/String;Ljava/lang/String;ILjava/lang/Throwable;)V flags 1
class name java/sql/SQLNonTransientConnectionException
header extends java/sql/SQLNonTransientException flags 21 classAnnotations @Ljdk/Profile+Annotation;(value=I2)
method name <init> descriptor ()V flags 1
method name <init> descriptor (Ljava/lang/String;)V flags 1
method name <init> descriptor (Ljava/lang/String;Ljava/lang/String;)V flags 1
method name <init> descriptor (Ljava/lang/String;Ljava/lang/String;I)V flags 1
method name <init> descriptor (Ljava/lang/Throwable;)V flags 1
method name <init> descriptor (Ljava/lang/String;Ljava/lang/Throwable;)V flags 1
method name <init> descriptor (Ljava/lang/String;Ljava/lang/String;Ljava/lang/Throwable;)V flags 1
method name <init> descriptor (Ljava/lang/String;Ljava/lang/String;ILjava/lang/Throwable;)V flags 1
class name java/sql/SQLNonTransientException
header extends java/sql/SQLException flags 21 classAnnotations @Ljdk/Profile+Annotation;(value=I2)
method name <init> descriptor ()V flags 1
method name <init> descriptor (Ljava/lang/String;)V flags 1
method name <init> descriptor (Ljava/lang/String;Ljava/lang/String;)V flags 1
method name <init> descriptor (Ljava/lang/String;Ljava/lang/String;I)V flags 1
method name <init> descriptor (Ljava/lang/Throwable;)V flags 1
method name <init> descriptor (Ljava/lang/String;Ljava/lang/Throwable;)V flags 1
method name <init> descriptor (Ljava/lang/String;Ljava/lang/String;Ljava/lang/Throwable;)V flags 1
method name <init> descriptor (Ljava/lang/String;Ljava/lang/String;ILjava/lang/Throwable;)V flags 1
class name java/sql/SQLOutput
header extends java/lang/Object flags 601 classAnnotations @Ljdk/Profile+Annotation;(value=I2)
method name writeString descriptor (Ljava/lang/String;)V thrownTypes java/sql/SQLException flags 401
method name writeBoolean descriptor (Z)V thrownTypes java/sql/SQLException flags 401
method name writeByte descriptor (B)V thrownTypes java/sql/SQLException flags 401
method name writeShort descriptor (S)V thrownTypes java/sql/SQLException flags 401
method name writeInt descriptor (I)V thrownTypes java/sql/SQLException flags 401
method name writeLong descriptor (J)V thrownTypes java/sql/SQLException flags 401
method name writeFloat descriptor (F)V thrownTypes java/sql/SQLException flags 401
method name writeDouble descriptor (D)V thrownTypes java/sql/SQLException flags 401
method name writeBigDecimal descriptor (Ljava/math/BigDecimal;)V thrownTypes java/sql/SQLException flags 401
method name writeBytes descriptor ([B)V thrownTypes java/sql/SQLException flags 401
method name writeDate descriptor (Ljava/sql/Date;)V thrownTypes java/sql/SQLException flags 401
method name writeTime descriptor (Ljava/sql/Time;)V thrownTypes java/sql/SQLException flags 401
method name writeTimestamp descriptor (Ljava/sql/Timestamp;)V thrownTypes java/sql/SQLException flags 401
method name writeCharacterStream descriptor (Ljava/io/Reader;)V thrownTypes java/sql/SQLException flags 401
method name writeAsciiStream descriptor (Ljava/io/InputStream;)V thrownTypes java/sql/SQLException flags 401
method name writeBinaryStream descriptor (Ljava/io/InputStream;)V thrownTypes java/sql/SQLException flags 401
method name writeObject descriptor (Ljava/sql/SQLData;)V thrownTypes java/sql/SQLException flags 401
method name writeRef descriptor (Ljava/sql/Ref;)V thrownTypes java/sql/SQLException flags 401
method name writeBlob descriptor (Ljava/sql/Blob;)V thrownTypes java/sql/SQLException flags 401
method name writeClob descriptor (Ljava/sql/Clob;)V thrownTypes java/sql/SQLException flags 401
method name writeStruct descriptor (Ljava/sql/Struct;)V thrownTypes java/sql/SQLException flags 401
method name writeArray descriptor (Ljava/sql/Array;)V thrownTypes java/sql/SQLException flags 401
method name writeURL descriptor (Ljava/net/URL;)V thrownTypes java/sql/SQLException flags 401
method name writeNString descriptor (Ljava/lang/String;)V thrownTypes java/sql/SQLException flags 401
method name writeNClob descriptor (Ljava/sql/NClob;)V thrownTypes java/sql/SQLException flags 401
method name writeRowId descriptor (Ljava/sql/RowId;)V thrownTypes java/sql/SQLException flags 401
method name writeSQLXML descriptor (Ljava/sql/SQLXML;)V thrownTypes java/sql/SQLException flags 401
method name writeObject descriptor (Ljava/lang/Object;Ljava/sql/SQLType;)V thrownTypes java/sql/SQLException flags 1
class name java/sql/SQLPermission
header extends java/security/BasicPermission flags 31 classAnnotations @Ljdk/Profile+Annotation;(value=I2)
method name <init> descriptor (Ljava/lang/String;)V flags 1
method name <init> descriptor (Ljava/lang/String;Ljava/lang/String;)V flags 1
class name java/sql/SQLRecoverableException
header extends java/sql/SQLException flags 21 classAnnotations @Ljdk/Profile+Annotation;(value=I2)
method name <init> descriptor ()V flags 1
method name <init> descriptor (Ljava/lang/String;)V flags 1
method name <init> descriptor (Ljava/lang/String;Ljava/lang/String;)V flags 1
method name <init> descriptor (Ljava/lang/String;Ljava/lang/String;I)V flags 1
method name <init> descriptor (Ljava/lang/Throwable;)V flags 1
method name <init> descriptor (Ljava/lang/String;Ljava/lang/Throwable;)V flags 1
method name <init> descriptor (Ljava/lang/String;Ljava/lang/String;Ljava/lang/Throwable;)V flags 1
method name <init> descriptor (Ljava/lang/String;Ljava/lang/String;ILjava/lang/Throwable;)V flags 1
class name java/sql/SQLSyntaxErrorException
header extends java/sql/SQLNonTransientException flags 21 classAnnotations @Ljdk/Profile+Annotation;(value=I2)
method name <init> descriptor ()V flags 1
method name <init> descriptor (Ljava/lang/String;)V flags 1
method name <init> descriptor (Ljava/lang/String;Ljava/lang/String;)V flags 1
method name <init> descriptor (Ljava/lang/String;Ljava/lang/String;I)V flags 1
method name <init> descriptor (Ljava/lang/Throwable;)V flags 1
method name <init> descriptor (Ljava/lang/String;Ljava/lang/Throwable;)V flags 1
method name <init> descriptor (Ljava/lang/String;Ljava/lang/String;Ljava/lang/Throwable;)V flags 1
method name <init> descriptor (Ljava/lang/String;Ljava/lang/String;ILjava/lang/Throwable;)V flags 1
class name java/sql/SQLTimeoutException
header extends java/sql/SQLTransientException flags 21 classAnnotations @Ljdk/Profile+Annotation;(value=I2)
method name <init> descriptor ()V flags 1
method name <init> descriptor (Ljava/lang/String;)V flags 1
method name <init> descriptor (Ljava/lang/String;Ljava/lang/String;)V flags 1
method name <init> descriptor (Ljava/lang/String;Ljava/lang/String;I)V flags 1
method name <init> descriptor (Ljava/lang/Throwable;)V flags 1
method name <init> descriptor (Ljava/lang/String;Ljava/lang/Throwable;)V flags 1
method name <init> descriptor (Ljava/lang/String;Ljava/lang/String;Ljava/lang/Throwable;)V flags 1
method name <init> descriptor (Ljava/lang/String;Ljava/lang/String;ILjava/lang/Throwable;)V flags 1
class name java/sql/SQLTransactionRollbackException
header extends java/sql/SQLTransientException flags 21 classAnnotations @Ljdk/Profile+Annotation;(value=I2)
method name <init> descriptor ()V flags 1
method name <init> descriptor (Ljava/lang/String;)V flags 1
method name <init> descriptor (Ljava/lang/String;Ljava/lang/String;)V flags 1
method name <init> descriptor (Ljava/lang/String;Ljava/lang/String;I)V flags 1
method name <init> descriptor (Ljava/lang/Throwable;)V flags 1
method name <init> descriptor (Ljava/lang/String;Ljava/lang/Throwable;)V flags 1
method name <init> descriptor (Ljava/lang/String;Ljava/lang/String;Ljava/lang/Throwable;)V flags 1
method name <init> descriptor (Ljava/lang/String;Ljava/lang/String;ILjava/lang/Throwable;)V flags 1
class name java/sql/SQLTransientConnectionException
header extends java/sql/SQLTransientException flags 21 classAnnotations @Ljdk/Profile+Annotation;(value=I2)
method name <init> descriptor ()V flags 1
method name <init> descriptor (Ljava/lang/String;)V flags 1
method name <init> descriptor (Ljava/lang/String;Ljava/lang/String;)V flags 1
method name <init> descriptor (Ljava/lang/String;Ljava/lang/String;I)V flags 1
method name <init> descriptor (Ljava/lang/Throwable;)V flags 1
method name <init> descriptor (Ljava/lang/String;Ljava/lang/Throwable;)V flags 1
method name <init> descriptor (Ljava/lang/String;Ljava/lang/String;Ljava/lang/Throwable;)V flags 1
method name <init> descriptor (Ljava/lang/String;Ljava/lang/String;ILjava/lang/Throwable;)V flags 1
class name java/sql/SQLTransientException
header extends java/sql/SQLException flags 21 classAnnotations @Ljdk/Profile+Annotation;(value=I2)
method name <init> descriptor ()V flags 1
method name <init> descriptor (Ljava/lang/String;)V flags 1
method name <init> descriptor (Ljava/lang/String;Ljava/lang/String;)V flags 1
method name <init> descriptor (Ljava/lang/String;Ljava/lang/String;I)V flags 1
method name <init> descriptor (Ljava/lang/Throwable;)V flags 1
method name <init> descriptor (Ljava/lang/String;Ljava/lang/Throwable;)V flags 1
method name <init> descriptor (Ljava/lang/String;Ljava/lang/String;Ljava/lang/Throwable;)V flags 1
method name <init> descriptor (Ljava/lang/String;Ljava/lang/String;ILjava/lang/Throwable;)V flags 1
class name java/sql/SQLType
header extends java/lang/Object flags 601 classAnnotations @Ljdk/Profile+Annotation;(value=I2)
method name getName descriptor ()Ljava/lang/String; flags 401
method name getVendor descriptor ()Ljava/lang/String; flags 401
method name getVendorTypeNumber descriptor ()Ljava/lang/Integer; flags 401
class name java/sql/SQLWarning
header extends java/sql/SQLException flags 21 classAnnotations @Ljdk/Profile+Annotation;(value=I2)
method name <init> descriptor (Ljava/lang/String;Ljava/lang/String;I)V flags 1
method name <init> descriptor (Ljava/lang/String;Ljava/lang/String;)V flags 1
method name <init> descriptor (Ljava/lang/String;)V flags 1
method name <init> descriptor ()V flags 1
method name <init> descriptor (Ljava/lang/Throwable;)V flags 1
method name <init> descriptor (Ljava/lang/String;Ljava/lang/Throwable;)V flags 1
method name <init> descriptor (Ljava/lang/String;Ljava/lang/String;Ljava/lang/Throwable;)V flags 1
method name <init> descriptor (Ljava/lang/String;Ljava/lang/String;ILjava/lang/Throwable;)V flags 1
method name getNextWarning descriptor ()Ljava/sql/SQLWarning; flags 1
method name setNextWarning descriptor (Ljava/sql/SQLWarning;)V flags 1
class name java/sql/SQLXML
header extends java/lang/Object flags 601 classAnnotations @Ljdk/Profile+Annotation;(value=I2)
method name free descriptor ()V thrownTypes java/sql/SQLException flags 401
method name getBinaryStream descriptor ()Ljava/io/InputStream; thrownTypes java/sql/SQLException flags 401
method name setBinaryStream descriptor ()Ljava/io/OutputStream; thrownTypes java/sql/SQLException flags 401
method name getCharacterStream descriptor ()Ljava/io/Reader; thrownTypes java/sql/SQLException flags 401
method name setCharacterStream descriptor ()Ljava/io/Writer; thrownTypes java/sql/SQLException flags 401
method name getString descriptor ()Ljava/lang/String; thrownTypes java/sql/SQLException flags 401
method name setString descriptor (Ljava/lang/String;)V thrownTypes java/sql/SQLException flags 401
method name getSource descriptor (Ljava/lang/Class;)Ljavax/xml/transform/Source; thrownTypes java/sql/SQLException flags 401 signature <T::Ljavax/xml/transform/Source;>(Ljava/lang/Class<TT;>;)TT;
method name setResult descriptor (Ljava/lang/Class;)Ljavax/xml/transform/Result; thrownTypes java/sql/SQLException flags 401 signature <T::Ljavax/xml/transform/Result;>(Ljava/lang/Class<TT;>;)TT;
class name java/sql/Savepoint
header extends java/lang/Object flags 601 classAnnotations @Ljdk/Profile+Annotation;(value=I2)
method name getSavepointId descriptor ()I thrownTypes java/sql/SQLException flags 401
method name getSavepointName descriptor ()Ljava/lang/String; thrownTypes java/sql/SQLException flags 401
class name java/sql/Statement
header extends java/lang/Object implements java/sql/Wrapper,java/lang/AutoCloseable flags 601 classAnnotations @Ljdk/Profile+Annotation;(value=I2)
field name CLOSE_CURRENT_RESULT descriptor I constantValue 1 flags 19
field name KEEP_CURRENT_RESULT descriptor I constantValue 2 flags 19
field name CLOSE_ALL_RESULTS descriptor I constantValue 3 flags 19
field name SUCCESS_NO_INFO descriptor I constantValue -2 flags 19
field name EXECUTE_FAILED descriptor I constantValue -3 flags 19
field name RETURN_GENERATED_KEYS descriptor I constantValue 1 flags 19
field name NO_GENERATED_KEYS descriptor I constantValue 2 flags 19
method name executeQuery descriptor (Ljava/lang/String;)Ljava/sql/ResultSet; thrownTypes java/sql/SQLException flags 401
method name executeUpdate descriptor (Ljava/lang/String;)I thrownTypes java/sql/SQLException flags 401
method name close descriptor ()V thrownTypes java/sql/SQLException flags 401
method name getMaxFieldSize descriptor ()I thrownTypes java/sql/SQLException flags 401
method name setMaxFieldSize descriptor (I)V thrownTypes java/sql/SQLException flags 401
method name getMaxRows descriptor ()I thrownTypes java/sql/SQLException flags 401
method name setMaxRows descriptor (I)V thrownTypes java/sql/SQLException flags 401
method name setEscapeProcessing descriptor (Z)V thrownTypes java/sql/SQLException flags 401
method name getQueryTimeout descriptor ()I thrownTypes java/sql/SQLException flags 401
method name setQueryTimeout descriptor (I)V thrownTypes java/sql/SQLException flags 401
method name cancel descriptor ()V thrownTypes java/sql/SQLException flags 401
method name getWarnings descriptor ()Ljava/sql/SQLWarning; thrownTypes java/sql/SQLException flags 401
method name clearWarnings descriptor ()V thrownTypes java/sql/SQLException flags 401
method name setCursorName descriptor (Ljava/lang/String;)V thrownTypes java/sql/SQLException flags 401
method name execute descriptor (Ljava/lang/String;)Z thrownTypes java/sql/SQLException flags 401
method name getResultSet descriptor ()Ljava/sql/ResultSet; thrownTypes java/sql/SQLException flags 401
method name getUpdateCount descriptor ()I thrownTypes java/sql/SQLException flags 401
method name getMoreResults descriptor ()Z thrownTypes java/sql/SQLException flags 401
method name setFetchDirection descriptor (I)V thrownTypes java/sql/SQLException flags 401
method name getFetchDirection descriptor ()I thrownTypes java/sql/SQLException flags 401
method name setFetchSize descriptor (I)V thrownTypes java/sql/SQLException flags 401
method name getFetchSize descriptor ()I thrownTypes java/sql/SQLException flags 401
method name getResultSetConcurrency descriptor ()I thrownTypes java/sql/SQLException flags 401
method name getResultSetType descriptor ()I thrownTypes java/sql/SQLException flags 401
method name addBatch descriptor (Ljava/lang/String;)V thrownTypes java/sql/SQLException flags 401
method name clearBatch descriptor ()V thrownTypes java/sql/SQLException flags 401
method name executeBatch descriptor ()[I thrownTypes java/sql/SQLException flags 401
method name getConnection descriptor ()Ljava/sql/Connection; thrownTypes java/sql/SQLException flags 401
method name getMoreResults descriptor (I)Z thrownTypes java/sql/SQLException flags 401
method name getGeneratedKeys descriptor ()Ljava/sql/ResultSet; thrownTypes java/sql/SQLException flags 401
method name executeUpdate descriptor (Ljava/lang/String;I)I thrownTypes java/sql/SQLException flags 401
method name executeUpdate descriptor (Ljava/lang/String;[I)I thrownTypes java/sql/SQLException flags 401
method name executeUpdate descriptor (Ljava/lang/String;[Ljava/lang/String;)I thrownTypes java/sql/SQLException flags 401
method name execute descriptor (Ljava/lang/String;I)Z thrownTypes java/sql/SQLException flags 401
method name execute descriptor (Ljava/lang/String;[I)Z thrownTypes java/sql/SQLException flags 401
method name execute descriptor (Ljava/lang/String;[Ljava/lang/String;)Z thrownTypes java/sql/SQLException flags 401
method name getResultSetHoldability descriptor ()I thrownTypes java/sql/SQLException flags 401
method name isClosed descriptor ()Z thrownTypes java/sql/SQLException flags 401
method name setPoolable descriptor (Z)V thrownTypes java/sql/SQLException flags 401
method name isPoolable descriptor ()Z thrownTypes java/sql/SQLException flags 401
method name closeOnCompletion descriptor ()V thrownTypes java/sql/SQLException flags 401
method name isCloseOnCompletion descriptor ()Z thrownTypes java/sql/SQLException flags 401
method name getLargeUpdateCount descriptor ()J thrownTypes java/sql/SQLException flags 1
method name setLargeMaxRows descriptor (J)V thrownTypes java/sql/SQLException flags 1
method name getLargeMaxRows descriptor ()J thrownTypes java/sql/SQLException flags 1
method name executeLargeBatch descriptor ()[J thrownTypes java/sql/SQLException flags 1
method name executeLargeUpdate descriptor (Ljava/lang/String;)J thrownTypes java/sql/SQLException flags 1
method name executeLargeUpdate descriptor (Ljava/lang/String;I)J thrownTypes java/sql/SQLException flags 1
method name executeLargeUpdate descriptor (Ljava/lang/String;[I)J thrownTypes java/sql/SQLException flags 1
method name executeLargeUpdate descriptor (Ljava/lang/String;[Ljava/lang/String;)J thrownTypes java/sql/SQLException flags 1
class name java/sql/Struct
header extends java/lang/Object flags 601 classAnnotations @Ljdk/Profile+Annotation;(value=I2)
method name getSQLTypeName descriptor ()Ljava/lang/String; thrownTypes java/sql/SQLException flags 401
method name getAttributes descriptor ()[Ljava/lang/Object; thrownTypes java/sql/SQLException flags 401
method name getAttributes descriptor (Ljava/util/Map;)[Ljava/lang/Object; thrownTypes java/sql/SQLException flags 401 signature (Ljava/util/Map<Ljava/lang/String;Ljava/lang/Class<*>;>;)[Ljava/lang/Object;
class name java/sql/Time
header extends java/util/Date flags 21 classAnnotations @Ljdk/Profile+Annotation;(value=I2)
method name <init> descriptor (III)V flags 1 deprecated true runtimeAnnotations @Ljava/lang/Deprecated;
method name <init> descriptor (J)V flags 1
method name setTime descriptor (J)V flags 1
method name valueOf descriptor (Ljava/lang/String;)Ljava/sql/Time; flags 9
method name toString descriptor ()Ljava/lang/String; flags 1
method name getYear descriptor ()I flags 1 deprecated true runtimeAnnotations @Ljava/lang/Deprecated;
method name getMonth descriptor ()I flags 1 deprecated true runtimeAnnotations @Ljava/lang/Deprecated;
method name getDay descriptor ()I flags 1 deprecated true runtimeAnnotations @Ljava/lang/Deprecated;
method name getDate descriptor ()I flags 1 deprecated true runtimeAnnotations @Ljava/lang/Deprecated;
method name setYear descriptor (I)V flags 1 deprecated true runtimeAnnotations @Ljava/lang/Deprecated;
method name setMonth descriptor (I)V flags 1 deprecated true runtimeAnnotations @Ljava/lang/Deprecated;
method name setDate descriptor (I)V flags 1 deprecated true runtimeAnnotations @Ljava/lang/Deprecated;
method name valueOf descriptor (Ljava/time/LocalTime;)Ljava/sql/Time; flags 9
method name toLocalTime descriptor ()Ljava/time/LocalTime; flags 1
method name toInstant descriptor ()Ljava/time/Instant; flags 1
class name java/sql/Timestamp
header extends java/util/Date flags 21 classAnnotations @Ljdk/Profile+Annotation;(value=I2)
method name <init> descriptor (IIIIIII)V flags 1 deprecated true runtimeAnnotations @Ljava/lang/Deprecated;
method name <init> descriptor (J)V flags 1
method name setTime descriptor (J)V flags 1
method name getTime descriptor ()J flags 1
method name valueOf descriptor (Ljava/lang/String;)Ljava/sql/Timestamp; flags 9
method name toString descriptor ()Ljava/lang/String; flags 1
method name getNanos descriptor ()I flags 1
method name setNanos descriptor (I)V flags 1
method name equals descriptor (Ljava/sql/Timestamp;)Z flags 1
method name equals descriptor (Ljava/lang/Object;)Z flags 1
method name before descriptor (Ljava/sql/Timestamp;)Z flags 1
method name after descriptor (Ljava/sql/Timestamp;)Z flags 1
method name compareTo descriptor (Ljava/sql/Timestamp;)I flags 1
method name compareTo descriptor (Ljava/util/Date;)I flags 1
method name hashCode descriptor ()I flags 1
method name valueOf descriptor (Ljava/time/LocalDateTime;)Ljava/sql/Timestamp; flags 9
method name toLocalDateTime descriptor ()Ljava/time/LocalDateTime; flags 1
method name from descriptor (Ljava/time/Instant;)Ljava/sql/Timestamp; flags 9
method name toInstant descriptor ()Ljava/time/Instant; flags 1
method name compareTo descriptor (Ljava/lang/Object;)I flags 1041
class name java/sql/Types
header extends java/lang/Object flags 21 classAnnotations @Ljdk/Profile+Annotation;(value=I2)
field name BIT descriptor I constantValue -7 flags 19
field name TINYINT descriptor I constantValue -6 flags 19
field name SMALLINT descriptor I constantValue 5 flags 19
field name INTEGER descriptor I constantValue 4 flags 19
field name BIGINT descriptor I constantValue -5 flags 19
field name FLOAT descriptor I constantValue 6 flags 19
field name REAL descriptor I constantValue 7 flags 19
field name DOUBLE descriptor I constantValue 8 flags 19
field name NUMERIC descriptor I constantValue 2 flags 19
field name DECIMAL descriptor I constantValue 3 flags 19
field name CHAR descriptor I constantValue 1 flags 19
field name VARCHAR descriptor I constantValue 12 flags 19
field name LONGVARCHAR descriptor I constantValue -1 flags 19
field name DATE descriptor I constantValue 91 flags 19
field name TIME descriptor I constantValue 92 flags 19
field name TIMESTAMP descriptor I constantValue 93 flags 19
field name BINARY descriptor I constantValue -2 flags 19
field name VARBINARY descriptor I constantValue -3 flags 19
field name LONGVARBINARY descriptor I constantValue -4 flags 19
field name NULL descriptor I constantValue 0 flags 19
field name OTHER descriptor I constantValue 1111 flags 19
field name JAVA_OBJECT descriptor I constantValue 2000 flags 19
field name DISTINCT descriptor I constantValue 2001 flags 19
field name STRUCT descriptor I constantValue 2002 flags 19
field name ARRAY descriptor I constantValue 2003 flags 19
field name BLOB descriptor I constantValue 2004 flags 19
field name CLOB descriptor I constantValue 2005 flags 19
field name REF descriptor I constantValue 2006 flags 19
field name DATALINK descriptor I constantValue 70 flags 19
field name BOOLEAN descriptor I constantValue 16 flags 19
field name ROWID descriptor I constantValue -8 flags 19
field name NCHAR descriptor I constantValue -15 flags 19
field name NVARCHAR descriptor I constantValue -9 flags 19
field name LONGNVARCHAR descriptor I constantValue -16 flags 19
field name NCLOB descriptor I constantValue 2011 flags 19
field name SQLXML descriptor I constantValue 2009 flags 19
field name REF_CURSOR descriptor I constantValue 2012 flags 19
field name TIME_WITH_TIMEZONE descriptor I constantValue 2013 flags 19
field name TIMESTAMP_WITH_TIMEZONE descriptor I constantValue 2014 flags 19
class name java/sql/Wrapper
header extends java/lang/Object flags 601 classAnnotations @Ljdk/Profile+Annotation;(value=I2)
method name unwrap descriptor (Ljava/lang/Class;)Ljava/lang/Object; thrownTypes java/sql/SQLException flags 401 signature <T:Ljava/lang/Object;>(Ljava/lang/Class<TT;>;)TT;
method name isWrapperFor descriptor (Ljava/lang/Class;)Z thrownTypes java/sql/SQLException flags 401 signature (Ljava/lang/Class<*>;)Z
class name javax/sql/CommonDataSource
header extends java/lang/Object flags 601 classAnnotations @Ljdk/Profile+Annotation;(value=I2)
method name getLogWriter descriptor ()Ljava/io/PrintWriter; thrownTypes java/sql/SQLException flags 401
method name setLogWriter descriptor (Ljava/io/PrintWriter;)V thrownTypes java/sql/SQLException flags 401
method name setLoginTimeout descriptor (I)V thrownTypes java/sql/SQLException flags 401
method name getLoginTimeout descriptor ()I thrownTypes java/sql/SQLException flags 401
method name getParentLogger descriptor ()Ljava/util/logging/Logger; thrownTypes java/sql/SQLFeatureNotSupportedException flags 401
class name javax/sql/ConnectionEvent
header extends java/util/EventObject flags 21 classAnnotations @Ljdk/Profile+Annotation;(value=I2)
method name <init> descriptor (Ljavax/sql/PooledConnection;)V flags 1
method name <init> descriptor (Ljavax/sql/PooledConnection;Ljava/sql/SQLException;)V flags 1
method name getSQLException descriptor ()Ljava/sql/SQLException; flags 1
class name javax/sql/ConnectionEventListener
header extends java/lang/Object implements java/util/EventListener flags 601 classAnnotations @Ljdk/Profile+Annotation;(value=I2)
method name connectionClosed descriptor (Ljavax/sql/ConnectionEvent;)V flags 401
method name connectionErrorOccurred descriptor (Ljavax/sql/ConnectionEvent;)V flags 401
class name javax/sql/ConnectionPoolDataSource
header extends java/lang/Object implements javax/sql/CommonDataSource flags 601 classAnnotations @Ljdk/Profile+Annotation;(value=I2)
method name getPooledConnection descriptor ()Ljavax/sql/PooledConnection; thrownTypes java/sql/SQLException flags 401
method name getPooledConnection descriptor (Ljava/lang/String;Ljava/lang/String;)Ljavax/sql/PooledConnection; thrownTypes java/sql/SQLException flags 401
class name javax/sql/DataSource
header extends java/lang/Object implements javax/sql/CommonDataSource,java/sql/Wrapper flags 601 classAnnotations @Ljdk/Profile+Annotation;(value=I2)
method name getConnection descriptor ()Ljava/sql/Connection; thrownTypes java/sql/SQLException flags 401
method name getConnection descriptor (Ljava/lang/String;Ljava/lang/String;)Ljava/sql/Connection; thrownTypes java/sql/SQLException flags 401
class name javax/sql/PooledConnection
header extends java/lang/Object flags 601 classAnnotations @Ljdk/Profile+Annotation;(value=I2)
method name getConnection descriptor ()Ljava/sql/Connection; thrownTypes java/sql/SQLException flags 401
method name close descriptor ()V thrownTypes java/sql/SQLException flags 401
method name addConnectionEventListener descriptor (Ljavax/sql/ConnectionEventListener;)V flags 401
method name removeConnectionEventListener descriptor (Ljavax/sql/ConnectionEventListener;)V flags 401
method name addStatementEventListener descriptor (Ljavax/sql/StatementEventListener;)V flags 401
method name removeStatementEventListener descriptor (Ljavax/sql/StatementEventListener;)V flags 401
class name javax/sql/RowSet
header extends java/lang/Object implements java/sql/ResultSet flags 601 classAnnotations @Ljdk/Profile+Annotation;(value=I2)
method name getUrl descriptor ()Ljava/lang/String; thrownTypes java/sql/SQLException flags 401
method name setUrl descriptor (Ljava/lang/String;)V thrownTypes java/sql/SQLException flags 401
method name getDataSourceName descriptor ()Ljava/lang/String; flags 401
method name setDataSourceName descriptor (Ljava/lang/String;)V thrownTypes java/sql/SQLException flags 401
method name getUsername descriptor ()Ljava/lang/String; flags 401
method name setUsername descriptor (Ljava/lang/String;)V thrownTypes java/sql/SQLException flags 401
method name getPassword descriptor ()Ljava/lang/String; flags 401
method name setPassword descriptor (Ljava/lang/String;)V thrownTypes java/sql/SQLException flags 401
method name getTransactionIsolation descriptor ()I flags 401
method name setTransactionIsolation descriptor (I)V thrownTypes java/sql/SQLException flags 401
method name getTypeMap descriptor ()Ljava/util/Map; thrownTypes java/sql/SQLException flags 401 signature ()Ljava/util/Map<Ljava/lang/String;Ljava/lang/Class<*>;>;
method name setTypeMap descriptor (Ljava/util/Map;)V thrownTypes java/sql/SQLException flags 401 signature (Ljava/util/Map<Ljava/lang/String;Ljava/lang/Class<*>;>;)V
method name getCommand descriptor ()Ljava/lang/String; flags 401
method name setCommand descriptor (Ljava/lang/String;)V thrownTypes java/sql/SQLException flags 401
method name isReadOnly descriptor ()Z flags 401
method name setReadOnly descriptor (Z)V thrownTypes java/sql/SQLException flags 401
method name getMaxFieldSize descriptor ()I thrownTypes java/sql/SQLException flags 401
method name setMaxFieldSize descriptor (I)V thrownTypes java/sql/SQLException flags 401
method name getMaxRows descriptor ()I thrownTypes java/sql/SQLException flags 401
method name setMaxRows descriptor (I)V thrownTypes java/sql/SQLException flags 401
method name getEscapeProcessing descriptor ()Z thrownTypes java/sql/SQLException flags 401
method name setEscapeProcessing descriptor (Z)V thrownTypes java/sql/SQLException flags 401
method name getQueryTimeout descriptor ()I thrownTypes java/sql/SQLException flags 401
method name setQueryTimeout descriptor (I)V thrownTypes java/sql/SQLException flags 401
method name setType descriptor (I)V thrownTypes java/sql/SQLException flags 401
method name setConcurrency descriptor (I)V thrownTypes java/sql/SQLException flags 401
method name setNull descriptor (II)V thrownTypes java/sql/SQLException flags 401
method name setNull descriptor (Ljava/lang/String;I)V thrownTypes java/sql/SQLException flags 401
method name setNull descriptor (IILjava/lang/String;)V thrownTypes java/sql/SQLException flags 401
method name setNull descriptor (Ljava/lang/String;ILjava/lang/String;)V thrownTypes java/sql/SQLException flags 401
method name setBoolean descriptor (IZ)V thrownTypes java/sql/SQLException flags 401
method name setBoolean descriptor (Ljava/lang/String;Z)V thrownTypes java/sql/SQLException flags 401
method name setByte descriptor (IB)V thrownTypes java/sql/SQLException flags 401
method name setByte descriptor (Ljava/lang/String;B)V thrownTypes java/sql/SQLException flags 401
method name setShort descriptor (IS)V thrownTypes java/sql/SQLException flags 401
method name setShort descriptor (Ljava/lang/String;S)V thrownTypes java/sql/SQLException flags 401
method name setInt descriptor (II)V thrownTypes java/sql/SQLException flags 401
method name setInt descriptor (Ljava/lang/String;I)V thrownTypes java/sql/SQLException flags 401
method name setLong descriptor (IJ)V thrownTypes java/sql/SQLException flags 401
method name setLong descriptor (Ljava/lang/String;J)V thrownTypes java/sql/SQLException flags 401
method name setFloat descriptor (IF)V thrownTypes java/sql/SQLException flags 401
method name setFloat descriptor (Ljava/lang/String;F)V thrownTypes java/sql/SQLException flags 401
method name setDouble descriptor (ID)V thrownTypes java/sql/SQLException flags 401
method name setDouble descriptor (Ljava/lang/String;D)V thrownTypes java/sql/SQLException flags 401
method name setBigDecimal descriptor (ILjava/math/BigDecimal;)V thrownTypes java/sql/SQLException flags 401
method name setBigDecimal descriptor (Ljava/lang/String;Ljava/math/BigDecimal;)V thrownTypes java/sql/SQLException flags 401
method name setString descriptor (ILjava/lang/String;)V thrownTypes java/sql/SQLException flags 401
method name setString descriptor (Ljava/lang/String;Ljava/lang/String;)V thrownTypes java/sql/SQLException flags 401
method name setBytes descriptor (I[B)V thrownTypes java/sql/SQLException flags 401
method name setBytes descriptor (Ljava/lang/String;[B)V thrownTypes java/sql/SQLException flags 401
method name setDate descriptor (ILjava/sql/Date;)V thrownTypes java/sql/SQLException flags 401
method name setTime descriptor (ILjava/sql/Time;)V thrownTypes java/sql/SQLException flags 401
method name setTimestamp descriptor (ILjava/sql/Timestamp;)V thrownTypes java/sql/SQLException flags 401
method name setTimestamp descriptor (Ljava/lang/String;Ljava/sql/Timestamp;)V thrownTypes java/sql/SQLException flags 401
method name setAsciiStream descriptor (ILjava/io/InputStream;I)V thrownTypes java/sql/SQLException flags 401
method name setAsciiStream descriptor (Ljava/lang/String;Ljava/io/InputStream;I)V thrownTypes java/sql/SQLException flags 401
method name setBinaryStream descriptor (ILjava/io/InputStream;I)V thrownTypes java/sql/SQLException flags 401
method name setBinaryStream descriptor (Ljava/lang/String;Ljava/io/InputStream;I)V thrownTypes java/sql/SQLException flags 401
method name setCharacterStream descriptor (ILjava/io/Reader;I)V thrownTypes java/sql/SQLException flags 401
method name setCharacterStream descriptor (Ljava/lang/String;Ljava/io/Reader;I)V thrownTypes java/sql/SQLException flags 401
method name setAsciiStream descriptor (ILjava/io/InputStream;)V thrownTypes java/sql/SQLException flags 401
method name setAsciiStream descriptor (Ljava/lang/String;Ljava/io/InputStream;)V thrownTypes java/sql/SQLException flags 401
method name setBinaryStream descriptor (ILjava/io/InputStream;)V thrownTypes java/sql/SQLException flags 401
method name setBinaryStream descriptor (Ljava/lang/String;Ljava/io/InputStream;)V thrownTypes java/sql/SQLException flags 401
method name setCharacterStream descriptor (ILjava/io/Reader;)V thrownTypes java/sql/SQLException flags 401
method name setCharacterStream descriptor (Ljava/lang/String;Ljava/io/Reader;)V thrownTypes java/sql/SQLException flags 401
method name setNCharacterStream descriptor (ILjava/io/Reader;)V thrownTypes java/sql/SQLException flags 401
method name setObject descriptor (ILjava/lang/Object;II)V thrownTypes java/sql/SQLException flags 401
method name setObject descriptor (Ljava/lang/String;Ljava/lang/Object;II)V thrownTypes java/sql/SQLException flags 401
method name setObject descriptor (ILjava/lang/Object;I)V thrownTypes java/sql/SQLException flags 401
method name setObject descriptor (Ljava/lang/String;Ljava/lang/Object;I)V thrownTypes java/sql/SQLException flags 401
method name setObject descriptor (Ljava/lang/String;Ljava/lang/Object;)V thrownTypes java/sql/SQLException flags 401
method name setObject descriptor (ILjava/lang/Object;)V thrownTypes java/sql/SQLException flags 401
method name setRef descriptor (ILjava/sql/Ref;)V thrownTypes java/sql/SQLException flags 401
method name setBlob descriptor (ILjava/sql/Blob;)V thrownTypes java/sql/SQLException flags 401
method name setBlob descriptor (ILjava/io/InputStream;J)V thrownTypes java/sql/SQLException flags 401
method name setBlob descriptor (ILjava/io/InputStream;)V thrownTypes java/sql/SQLException flags 401
method name setBlob descriptor (Ljava/lang/String;Ljava/io/InputStream;J)V thrownTypes java/sql/SQLException flags 401
method name setBlob descriptor (Ljava/lang/String;Ljava/sql/Blob;)V thrownTypes java/sql/SQLException flags 401
method name setBlob descriptor (Ljava/lang/String;Ljava/io/InputStream;)V thrownTypes java/sql/SQLException flags 401
method name setClob descriptor (ILjava/sql/Clob;)V thrownTypes java/sql/SQLException flags 401
method name setClob descriptor (ILjava/io/Reader;J)V thrownTypes java/sql/SQLException flags 401
method name setClob descriptor (ILjava/io/Reader;)V thrownTypes java/sql/SQLException flags 401
method name setClob descriptor (Ljava/lang/String;Ljava/io/Reader;J)V thrownTypes java/sql/SQLException flags 401
method name setClob descriptor (Ljava/lang/String;Ljava/sql/Clob;)V thrownTypes java/sql/SQLException flags 401
method name setClob descriptor (Ljava/lang/String;Ljava/io/Reader;)V thrownTypes java/sql/SQLException flags 401
method name setArray descriptor (ILjava/sql/Array;)V thrownTypes java/sql/SQLException flags 401
method name setDate descriptor (ILjava/sql/Date;Ljava/util/Calendar;)V thrownTypes java/sql/SQLException flags 401
method name setDate descriptor (Ljava/lang/String;Ljava/sql/Date;)V thrownTypes java/sql/SQLException flags 401
method name setDate descriptor (Ljava/lang/String;Ljava/sql/Date;Ljava/util/Calendar;)V thrownTypes java/sql/SQLException flags 401
method name setTime descriptor (ILjava/sql/Time;Ljava/util/Calendar;)V thrownTypes java/sql/SQLException flags 401
method name setTime descriptor (Ljava/lang/String;Ljava/sql/Time;)V thrownTypes java/sql/SQLException flags 401
method name setTime descriptor (Ljava/lang/String;Ljava/sql/Time;Ljava/util/Calendar;)V thrownTypes java/sql/SQLException flags 401
method name setTimestamp descriptor (ILjava/sql/Timestamp;Ljava/util/Calendar;)V thrownTypes java/sql/SQLException flags 401
method name setTimestamp descriptor (Ljava/lang/String;Ljava/sql/Timestamp;Ljava/util/Calendar;)V thrownTypes java/sql/SQLException flags 401
method name clearParameters descriptor ()V thrownTypes java/sql/SQLException flags 401
method name execute descriptor ()V thrownTypes java/sql/SQLException flags 401
method name addRowSetListener descriptor (Ljavax/sql/RowSetListener;)V flags 401
method name removeRowSetListener descriptor (Ljavax/sql/RowSetListener;)V flags 401
method name setSQLXML descriptor (ILjava/sql/SQLXML;)V thrownTypes java/sql/SQLException flags 401
method name setSQLXML descriptor (Ljava/lang/String;Ljava/sql/SQLXML;)V thrownTypes java/sql/SQLException flags 401
method name setRowId descriptor (ILjava/sql/RowId;)V thrownTypes java/sql/SQLException flags 401
method name setRowId descriptor (Ljava/lang/String;Ljava/sql/RowId;)V thrownTypes java/sql/SQLException flags 401
method name setNString descriptor (ILjava/lang/String;)V thrownTypes java/sql/SQLException flags 401
method name setNString descriptor (Ljava/lang/String;Ljava/lang/String;)V thrownTypes java/sql/SQLException flags 401
method name setNCharacterStream descriptor (ILjava/io/Reader;J)V thrownTypes java/sql/SQLException flags 401
method name setNCharacterStream descriptor (Ljava/lang/String;Ljava/io/Reader;J)V thrownTypes java/sql/SQLException flags 401
method name setNCharacterStream descriptor (Ljava/lang/String;Ljava/io/Reader;)V thrownTypes java/sql/SQLException flags 401
method name setNClob descriptor (Ljava/lang/String;Ljava/sql/NClob;)V thrownTypes java/sql/SQLException flags 401
method name setNClob descriptor (Ljava/lang/String;Ljava/io/Reader;J)V thrownTypes java/sql/SQLException flags 401
method name setNClob descriptor (Ljava/lang/String;Ljava/io/Reader;)V thrownTypes java/sql/SQLException flags 401
method name setNClob descriptor (ILjava/io/Reader;J)V thrownTypes java/sql/SQLException flags 401
method name setNClob descriptor (ILjava/sql/NClob;)V thrownTypes java/sql/SQLException flags 401
method name setNClob descriptor (ILjava/io/Reader;)V thrownTypes java/sql/SQLException flags 401
method name setURL descriptor (ILjava/net/URL;)V thrownTypes java/sql/SQLException flags 401
class name javax/sql/RowSetEvent
header extends java/util/EventObject flags 21 classAnnotations @Ljdk/Profile+Annotation;(value=I2)
method name <init> descriptor (Ljavax/sql/RowSet;)V flags 1
class name javax/sql/RowSetInternal
header extends java/lang/Object flags 601 classAnnotations @Ljdk/Profile+Annotation;(value=I2)
method name getParams descriptor ()[Ljava/lang/Object; thrownTypes java/sql/SQLException flags 401
method name getConnection descriptor ()Ljava/sql/Connection; thrownTypes java/sql/SQLException flags 401
method name setMetaData descriptor (Ljavax/sql/RowSetMetaData;)V thrownTypes java/sql/SQLException flags 401
method name getOriginal descriptor ()Ljava/sql/ResultSet; thrownTypes java/sql/SQLException flags 401
method name getOriginalRow descriptor ()Ljava/sql/ResultSet; thrownTypes java/sql/SQLException flags 401
class name javax/sql/RowSetListener
header extends java/lang/Object implements java/util/EventListener flags 601 classAnnotations @Ljdk/Profile+Annotation;(value=I2)
method name rowSetChanged descriptor (Ljavax/sql/RowSetEvent;)V flags 401
method name rowChanged descriptor (Ljavax/sql/RowSetEvent;)V flags 401
method name cursorMoved descriptor (Ljavax/sql/RowSetEvent;)V flags 401
class name javax/sql/RowSetMetaData
header extends java/lang/Object implements java/sql/ResultSetMetaData flags 601 classAnnotations @Ljdk/Profile+Annotation;(value=I2)
method name setColumnCount descriptor (I)V thrownTypes java/sql/SQLException flags 401
method name setAutoIncrement descriptor (IZ)V thrownTypes java/sql/SQLException flags 401
method name setCaseSensitive descriptor (IZ)V thrownTypes java/sql/SQLException flags 401
method name setSearchable descriptor (IZ)V thrownTypes java/sql/SQLException flags 401
method name setCurrency descriptor (IZ)V thrownTypes java/sql/SQLException flags 401
method name setNullable descriptor (II)V thrownTypes java/sql/SQLException flags 401
method name setSigned descriptor (IZ)V thrownTypes java/sql/SQLException flags 401
method name setColumnDisplaySize descriptor (II)V thrownTypes java/sql/SQLException flags 401
method name setColumnLabel descriptor (ILjava/lang/String;)V thrownTypes java/sql/SQLException flags 401
method name setColumnName descriptor (ILjava/lang/String;)V thrownTypes java/sql/SQLException flags 401
method name setSchemaName descriptor (ILjava/lang/String;)V thrownTypes java/sql/SQLException flags 401
method name setPrecision descriptor (II)V thrownTypes java/sql/SQLException flags 401
method name setScale descriptor (II)V thrownTypes java/sql/SQLException flags 401
method name setTableName descriptor (ILjava/lang/String;)V thrownTypes java/sql/SQLException flags 401
method name setCatalogName descriptor (ILjava/lang/String;)V thrownTypes java/sql/SQLException flags 401
method name setColumnType descriptor (II)V thrownTypes java/sql/SQLException flags 401
method name setColumnTypeName descriptor (ILjava/lang/String;)V thrownTypes java/sql/SQLException flags 401
class name javax/sql/RowSetReader
header extends java/lang/Object flags 601 classAnnotations @Ljdk/Profile+Annotation;(value=I2)
method name readData descriptor (Ljavax/sql/RowSetInternal;)V thrownTypes java/sql/SQLException flags 401
class name javax/sql/RowSetWriter
header extends java/lang/Object flags 601 classAnnotations @Ljdk/Profile+Annotation;(value=I2)
method name writeData descriptor (Ljavax/sql/RowSetInternal;)Z thrownTypes java/sql/SQLException flags 401
class name javax/sql/StatementEvent
header extends java/util/EventObject flags 21 classAnnotations @Ljdk/Profile+Annotation;(value=I2)
method name <init> descriptor (Ljavax/sql/PooledConnection;Ljava/sql/PreparedStatement;)V flags 1
method name <init> descriptor (Ljavax/sql/PooledConnection;Ljava/sql/PreparedStatement;Ljava/sql/SQLException;)V flags 1
method name getStatement descriptor ()Ljava/sql/PreparedStatement; flags 1
method name getSQLException descriptor ()Ljava/sql/SQLException; flags 1
class name javax/sql/StatementEventListener
header extends java/lang/Object implements java/util/EventListener flags 601 classAnnotations @Ljdk/Profile+Annotation;(value=I2)
method name statementClosed descriptor (Ljavax/sql/StatementEvent;)V flags 401
method name statementErrorOccurred descriptor (Ljavax/sql/StatementEvent;)V flags 401
class name javax/sql/XAConnection
header extends java/lang/Object implements javax/sql/PooledConnection flags 601 classAnnotations @Ljdk/Profile+Annotation;(value=I2)
method name getXAResource descriptor ()Ljavax/transaction/xa/XAResource; thrownTypes java/sql/SQLException flags 401
class name javax/sql/XADataSource
header extends java/lang/Object implements javax/sql/CommonDataSource flags 601 classAnnotations @Ljdk/Profile+Annotation;(value=I2)
method name getXAConnection descriptor ()Ljavax/sql/XAConnection; thrownTypes java/sql/SQLException flags 401
method name getXAConnection descriptor (Ljava/lang/String;Ljava/lang/String;)Ljavax/sql/XAConnection; thrownTypes java/sql/SQLException flags 401
class name javax/transaction/xa/XAException
header extends java/lang/Exception flags 21 classAnnotations @Ljdk/Profile+Annotation;(value=I2)
field name errorCode descriptor I flags 1
field name XA_RBBASE descriptor I constantValue 100 flags 19
field name XA_RBROLLBACK descriptor I constantValue 100 flags 19
field name XA_RBCOMMFAIL descriptor I constantValue 101 flags 19
field name XA_RBDEADLOCK descriptor I constantValue 102 flags 19
field name XA_RBINTEGRITY descriptor I constantValue 103 flags 19
field name XA_RBOTHER descriptor I constantValue 104 flags 19
field name XA_RBPROTO descriptor I constantValue 105 flags 19
field name XA_RBTIMEOUT descriptor I constantValue 106 flags 19
field name XA_RBTRANSIENT descriptor I constantValue 107 flags 19
field name XA_RBEND descriptor I constantValue 107 flags 19
field name XA_NOMIGRATE descriptor I constantValue 9 flags 19
field name XA_HEURHAZ descriptor I constantValue 8 flags 19
field name XA_HEURCOM descriptor I constantValue 7 flags 19
field name XA_HEURRB descriptor I constantValue 6 flags 19
field name XA_HEURMIX descriptor I constantValue 5 flags 19
field name XA_RETRY descriptor I constantValue 4 flags 19
field name XA_RDONLY descriptor I constantValue 3 flags 19
field name XAER_ASYNC descriptor I constantValue -2 flags 19
field name XAER_RMERR descriptor I constantValue -3 flags 19
field name XAER_NOTA descriptor I constantValue -4 flags 19
field name XAER_INVAL descriptor I constantValue -5 flags 19
field name XAER_PROTO descriptor I constantValue -6 flags 19
field name XAER_RMFAIL descriptor I constantValue -7 flags 19
field name XAER_DUPID descriptor I constantValue -8 flags 19
field name XAER_OUTSIDE descriptor I constantValue -9 flags 19
method name <init> descriptor ()V flags 1
method name <init> descriptor (Ljava/lang/String;)V flags 1
method name <init> descriptor (I)V flags 1
class name javax/transaction/xa/XAResource
header extends java/lang/Object flags 601 classAnnotations @Ljdk/Profile+Annotation;(value=I2)
field name TMENDRSCAN descriptor I constantValue 8388608 flags 19
field name TMFAIL descriptor I constantValue 536870912 flags 19
field name TMJOIN descriptor I constantValue 2097152 flags 19
field name TMNOFLAGS descriptor I constantValue 0 flags 19
field name TMONEPHASE descriptor I constantValue 1073741824 flags 19
field name TMRESUME descriptor I constantValue 134217728 flags 19
field name TMSTARTRSCAN descriptor I constantValue 16777216 flags 19
field name TMSUCCESS descriptor I constantValue 67108864 flags 19
field name TMSUSPEND descriptor I constantValue 33554432 flags 19
field name XA_RDONLY descriptor I constantValue 3 flags 19
field name XA_OK descriptor I constantValue 0 flags 19
method name commit descriptor (Ljavax/transaction/xa/Xid;Z)V thrownTypes javax/transaction/xa/XAException flags 401
method name end descriptor (Ljavax/transaction/xa/Xid;I)V thrownTypes javax/transaction/xa/XAException flags 401
method name forget descriptor (Ljavax/transaction/xa/Xid;)V thrownTypes javax/transaction/xa/XAException flags 401
method name getTransactionTimeout descriptor ()I thrownTypes javax/transaction/xa/XAException flags 401
method name isSameRM descriptor (Ljavax/transaction/xa/XAResource;)Z thrownTypes javax/transaction/xa/XAException flags 401
method name prepare descriptor (Ljavax/transaction/xa/Xid;)I thrownTypes javax/transaction/xa/XAException flags 401
method name recover descriptor (I)[Ljavax/transaction/xa/Xid; thrownTypes javax/transaction/xa/XAException flags 401
method name rollback descriptor (Ljavax/transaction/xa/Xid;)V thrownTypes javax/transaction/xa/XAException flags 401
method name setTransactionTimeout descriptor (I)Z thrownTypes javax/transaction/xa/XAException flags 401
method name start descriptor (Ljavax/transaction/xa/Xid;I)V thrownTypes javax/transaction/xa/XAException flags 401
class name javax/transaction/xa/Xid
header extends java/lang/Object flags 601 classAnnotations @Ljdk/Profile+Annotation;(value=I2)
field name MAXGTRIDSIZE descriptor I constantValue 64 flags 19
field name MAXBQUALSIZE descriptor I constantValue 64 flags 19
method name getFormatId descriptor ()I flags 401
method name getGlobalTransactionId descriptor ()[B flags 401
method name getBranchQualifier descriptor ()[B flags 401
|