1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_201) on Tue Jun 16 07:41:33 AEST 2020 -->
<title>Index</title>
<meta name="date" content="2020-06-16">
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
<script type="text/javascript" src="script.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Index";
}
}
catch(err) {
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="overview-summary.html">Overview</a></li>
<li>Package</li>
<li>Class</li>
<li><a href="overview-tree.html">Tree</a></li>
<li><a href="deprecated-list.html">Deprecated</a></li>
<li class="navBarCell1Rev">Index</li>
<li><a href="help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="index.html?index-all.html" target="_top">Frames</a></li>
<li><a href="index-all.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="contentContainer"><a href="#I:A">A</a> <a href="#I:B">B</a> <a href="#I:C">C</a> <a href="#I:D">D</a> <a href="#I:E">E</a> <a href="#I:F">F</a> <a href="#I:G">G</a> <a href="#I:H">H</a> <a href="#I:I">I</a> <a href="#I:J">J</a> <a href="#I:L">L</a> <a href="#I:M">M</a> <a href="#I:N">N</a> <a href="#I:O">O</a> <a href="#I:P">P</a> <a href="#I:Q">Q</a> <a href="#I:R">R</a> <a href="#I:S">S</a> <a href="#I:T">T</a> <a href="#I:U">U</a> <a href="#I:V">V</a> <a name="I:A">
<!-- -->
</a>
<h2 class="title">A</h2>
<dl>
<dt><span class="memberNameLink"><a href="org/jpl7/fli/Prolog.html#action_abort--">action_abort()</a></span> - Static method in class org.jpl7.fli.<a href="org/jpl7/fli/Prolog.html" title="class in org.jpl7.fli">Prolog</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Query.html#allSolutions--">allSolutions()</a></span> - Method in class org.jpl7.<a href="org/jpl7/Query.html" title="class in org.jpl7">Query</a></dt>
<dd>
<div class="block">calls the Query's goal to exhaustion and returns an array of zero or more
Maps of zero or more variablename-to-term bindings (each Map represents a
solution, in the order in which they were found).</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Query.html#allSolutions-org.jpl7.Term-">allSolutions(Term)</a></span> - Static method in class org.jpl7.<a href="org/jpl7/Query.html" title="class in org.jpl7">Query</a></dt>
<dd>
<div class="block">This static method creates a Query whose goal is the given Term, calls it
to exhaustion, and returns an array of zero or more Maps of zero or more
variablename-to-term bindings (each Map represents a solution, in the
order in which they were found).</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Query.html#allSolutions-java.lang.String-">allSolutions(String)</a></span> - Static method in class org.jpl7.<a href="org/jpl7/Query.html" title="class in org.jpl7">Query</a></dt>
<dd>
<div class="block">This static method creates a Query from the given Prolog source text
fragment, calls it to exhaustion, and returns an array of zero or more
Maps of zero or more variablename-to-term bindings (each Map represents a
solution, in the order in which they were found).</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Query.html#allSolutions-java.lang.String-org.jpl7.Term:A-">allSolutions(String, Term[])</a></span> - Static method in class org.jpl7.<a href="org/jpl7/Query.html" title="class in org.jpl7">Query</a></dt>
<dd>
<div class="block">If text denotes (in traditional Prolog source syntax) a term containing N
questionmark (?) symbols and there are N accompanying Term params, this
static method replaces each questionmark symbol by its respective param,
calls the resulting goal to exhaustion, and returns an array of zero or
more Maps of zero or more variablename-to-term bindings (each Map
represents a solution, in the order in which they were found).</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Compound.html#arg-int-">arg(int)</a></span> - Method in class org.jpl7.<a href="org/jpl7/Compound.html" title="class in org.jpl7">Compound</a></dt>
<dd>
<div class="block">Returns the ith argument (counting from 1) of this Compound.</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Term.html#arg-int-">arg(int)</a></span> - Method in class org.jpl7.<a href="org/jpl7/Term.html" title="class in org.jpl7">Term</a></dt>
<dd>
<div class="block">returns the i-th (1+) argument of a Term;
defined only for Compound</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Atom.html#args--">args()</a></span> - Method in class org.jpl7.<a href="org/jpl7/Atom.html" title="class in org.jpl7">Atom</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Compound.html#args">args</a></span> - Variable in class org.jpl7.<a href="org/jpl7/Compound.html" title="class in org.jpl7">Compound</a></dt>
<dd>
<div class="block">The (zero or more) arguments of this Compound.</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Compound.html#args--">args()</a></span> - Method in class org.jpl7.<a href="org/jpl7/Compound.html" title="class in org.jpl7">Compound</a></dt>
<dd>
<div class="block">Returns the arguments of this Compound as a Term[0..arity-1] array.</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Float.html#args--">args()</a></span> - Method in class org.jpl7.<a href="org/jpl7/Float.html" title="class in org.jpl7">Float</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Integer.html#args--">args()</a></span> - Method in class org.jpl7.<a href="org/jpl7/Integer.html" title="class in org.jpl7">Integer</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Rational.html#args--">args()</a></span> - Method in class org.jpl7.<a href="org/jpl7/Rational.html" title="class in org.jpl7">Rational</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Term.html#args--">args()</a></span> - Method in class org.jpl7.<a href="org/jpl7/Term.html" title="class in org.jpl7">Term</a></dt>
<dd>
<div class="block">The arguments of this Term.</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Variable.html#args--">args()</a></span> - Method in class org.jpl7.<a href="org/jpl7/Variable.html" title="class in org.jpl7">Variable</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Compound.html#arity--">arity()</a></span> - Method in class org.jpl7.<a href="org/jpl7/Compound.html" title="class in org.jpl7">Compound</a></dt>
<dd>
<div class="block">Returns the arity (0+) of this Compound.</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Term.html#arity--">arity()</a></span> - Method in class org.jpl7.<a href="org/jpl7/Term.html" title="class in org.jpl7">Term</a></dt>
<dd>
<div class="block">the arity of a Compound, Atom, Integer or Float</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Variable.html#arity--">arity()</a></span> - Method in class org.jpl7.<a href="org/jpl7/Variable.html" title="class in org.jpl7">Variable</a></dt>
<dd>
<div class="block">returns, as an int, the arity of a Term</div>
</dd>
<dt><a href="org/jpl7/Atom.html" title="class in org.jpl7"><span class="typeNameLink">Atom</span></a> - Class in <a href="org/jpl7/package-summary.html">org.jpl7</a></dt>
<dd>
<div class="block">Atom is a specialised Term, representing a Prolog atom with the same name.</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Atom.html#Atom-java.lang.String-">Atom(String)</a></span> - Constructor for class org.jpl7.<a href="org/jpl7/Atom.html" title="class in org.jpl7">Atom</a></dt>
<dd>
<div class="block">This constructs a "text" Atom, and is equivalent to</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Atom.html#Atom-java.lang.String-java.lang.String-">Atom(String, String)</a></span> - Constructor for class org.jpl7.<a href="org/jpl7/Atom.html" title="class in org.jpl7">Atom</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/fli/Prolog.html#ATOM">ATOM</a></span> - Static variable in class org.jpl7.fli.<a href="org/jpl7/fli/Prolog.html" title="class in org.jpl7.fli">Prolog</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/fli/Prolog.html#atom_chars-org.jpl7.fli.atom_t-">atom_chars(atom_t)</a></span> - Static method in class org.jpl7.fli.<a href="org/jpl7/fli/Prolog.html" title="class in org.jpl7.fli">Prolog</a></dt>
<dd> </dd>
<dt><a href="org/jpl7/fli/atom_t.html" title="class in org.jpl7.fli"><span class="typeNameLink">atom_t</span></a> - Class in <a href="org/jpl7/fli/package-summary.html">org.jpl7.fli</a></dt>
<dd>
<div class="block">An atom_t is a specialised LongHolder which decrements its atom's reference
count when garbage-collected (finalized).</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/fli/atom_t.html#atom_t--">atom_t()</a></span> - Constructor for class org.jpl7.fli.<a href="org/jpl7/fli/atom_t.html" title="class in org.jpl7.fli">atom_t</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Term.html#atomListToStringArray-org.jpl7.Term-">atomListToStringArray(Term)</a></span> - Static method in class org.jpl7.<a href="org/jpl7/Term.html" title="class in org.jpl7">Term</a></dt>
<dd>
<div class="block">Converts a term representing a list of atoms into an array of Strings, each element
in the array being a String for the corresponding atom
e.g., [a, b, 1</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Util.html#atomListToStringArray-org.jpl7.Term-">atomListToStringArray(Term)</a></span> - Static method in class org.jpl7.<a href="org/jpl7/Util.html" title="class in org.jpl7">Util</a></dt>
<dd>
<div class="block"><span class="deprecatedLabel">Deprecated.</span>
<div class="block"><span class="deprecationComment">Use <a href="org/jpl7/Term.html#atomListToStringArray-org.jpl7.Term-"><code>Term.atomListToStringArray(Term)</code></a></span></div>
</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Atom.html#atomType--">atomType()</a></span> - Method in class org.jpl7.<a href="org/jpl7/Atom.html" title="class in org.jpl7">Atom</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/JRef.html#atomType--">atomType()</a></span> - Method in class org.jpl7.<a href="org/jpl7/JRef.html" title="class in org.jpl7">JRef</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Term.html#atomType--">atomType()</a></span> - Method in class org.jpl7.<a href="org/jpl7/Term.html" title="class in org.jpl7">Term</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/fli/Prolog.html#attach_engine-org.jpl7.fli.engine_t-">attach_engine(engine_t)</a></span> - Static method in class org.jpl7.fli.<a href="org/jpl7/fli/Prolog.html" title="class in org.jpl7.fli">Prolog</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/fli/Prolog.html#attach_pool_engine--">attach_pool_engine()</a></span> - Static method in class org.jpl7.fli.<a href="org/jpl7/fli/Prolog.html" title="class in org.jpl7.fli">Prolog</a></dt>
<dd> </dd>
</dl>
<a name="I:B">
<!-- -->
</a>
<h2 class="title">B</h2>
<dl>
<dt><span class="memberNameLink"><a href="org/jpl7/Integer.html#bigValue">bigValue</a></span> - Variable in class org.jpl7.<a href="org/jpl7/Integer.html" title="class in org.jpl7">Integer</a></dt>
<dd>
<div class="block">the Integer's immutable BigInteger value, iff too big for a long, else null</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Integer.html#bigValue--">bigValue()</a></span> - Method in class org.jpl7.<a href="org/jpl7/Integer.html" title="class in org.jpl7">Integer</a></dt>
<dd>
<div class="block">Returns the value of this Integer as a java.math.BigInteger, whether or not it fits in a long</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Term.html#bigValue--">bigValue()</a></span> - Method in class org.jpl7.<a href="org/jpl7/Term.html" title="class in org.jpl7">Term</a></dt>
<dd>
<div class="block">the value (as a java.math.BigInteger) of an Integer, whether or not it is big</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/fli/Prolog.html#BLOB">BLOB</a></span> - Static variable in class org.jpl7.fli.<a href="org/jpl7/fli/Prolog.html" title="class in org.jpl7.fli">Prolog</a></dt>
<dd> </dd>
<dt><a href="org/jpl7/fli/BooleanHolder.html" title="class in org.jpl7.fli"><span class="typeNameLink">BooleanHolder</span></a> - Class in <a href="org/jpl7/fli/package-summary.html">org.jpl7.fli</a></dt>
<dd>
<div class="block">A BooleanHolder is merely a Holder class for a boolean value.</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/fli/BooleanHolder.html#BooleanHolder--">BooleanHolder()</a></span> - Constructor for class org.jpl7.fli.<a href="org/jpl7/fli/BooleanHolder.html" title="class in org.jpl7.fli">BooleanHolder</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/fli/Prolog.html#BUF_DISCARDABLE">BUF_DISCARDABLE</a></span> - Static variable in class org.jpl7.fli.<a href="org/jpl7/fli/Prolog.html" title="class in org.jpl7.fli">Prolog</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/fli/Prolog.html#BUF_MALLOC">BUF_MALLOC</a></span> - Static variable in class org.jpl7.fli.<a href="org/jpl7/fli/Prolog.html" title="class in org.jpl7.fli">Prolog</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/fli/Prolog.html#BUF_RING">BUF_RING</a></span> - Static variable in class org.jpl7.fli.<a href="org/jpl7/fli/Prolog.html" title="class in org.jpl7.fli">Prolog</a></dt>
<dd> </dd>
</dl>
<a name="I:C">
<!-- -->
</a>
<h2 class="title">C</h2>
<dl>
<dt><span class="memberNameLink"><a href="org/jpl7/Query.html#close--">close()</a></span> - Method in class org.jpl7.<a href="org/jpl7/Query.html" title="class in org.jpl7">Query</a></dt>
<dd>
<div class="block">This method can be used to close an open query before its solutions are
exhausted.</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/fli/Prolog.html#close_query-org.jpl7.fli.qid_t-">close_query(qid_t)</a></span> - Static method in class org.jpl7.fli.<a href="org/jpl7/fli/Prolog.html" title="class in org.jpl7.fli">Prolog</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/fli/Prolog.html#compare-org.jpl7.fli.term_t-org.jpl7.fli.term_t-">compare(term_t, term_t)</a></span> - Static method in class org.jpl7.fli.<a href="org/jpl7/fli/Prolog.html" title="class in org.jpl7.fli">Prolog</a></dt>
<dd> </dd>
<dt><a href="org/jpl7/Compound.html" title="class in org.jpl7"><span class="typeNameLink">Compound</span></a> - Class in <a href="org/jpl7/package-summary.html">org.jpl7</a></dt>
<dd>
<div class="block">A Compound represents a structured term, comprising a functor and one or more arguments (Terms).</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Compound.html#Compound-java.lang.String-">Compound(String)</a></span> - Constructor for class org.jpl7.<a href="org/jpl7/Compound.html" title="class in org.jpl7">Compound</a></dt>
<dd>
<div class="block">Creates a Compound with name and no args (which in SWI Prolog V7 is distinct from a text atom of the same name).</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Compound.html#Compound-java.lang.String-int-">Compound(String, int)</a></span> - Constructor for class org.jpl7.<a href="org/jpl7/Compound.html" title="class in org.jpl7">Compound</a></dt>
<dd>
<div class="block">Creates a Compound with name and arity.</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Compound.html#Compound-java.lang.String-org.jpl7.Term:A-">Compound(String, Term[])</a></span> - Constructor for class org.jpl7.<a href="org/jpl7/Compound.html" title="class in org.jpl7">Compound</a></dt>
<dd>
<div class="block">Creates a Compound with name and (zero or more) args.</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/fli/Prolog.html#COMPOUND">COMPOUND</a></span> - Static variable in class org.jpl7.fli.<a href="org/jpl7/fli/Prolog.html" title="class in org.jpl7.fli">Prolog</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/fli/Prolog.html#cons_functor_v-org.jpl7.fli.term_t-org.jpl7.fli.functor_t-org.jpl7.fli.term_t-">cons_functor_v(term_t, functor_t, term_t)</a></span> - Static method in class org.jpl7.fli.<a href="org/jpl7/fli/Prolog.html" title="class in org.jpl7.fli">Prolog</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Query.html#contextModule">contextModule</a></span> - Variable in class org.jpl7.<a href="org/jpl7/Query.html" title="class in org.jpl7">Query</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/fli/Prolog.html#copy_term_ref-org.jpl7.fli.term_t-">copy_term_ref(term_t)</a></span> - Static method in class org.jpl7.fli.<a href="org/jpl7/fli/Prolog.html" title="class in org.jpl7.fli">Prolog</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/fli/Prolog.html#current_engine--">current_engine()</a></span> - Static method in class org.jpl7.fli.<a href="org/jpl7/fli/Prolog.html" title="class in org.jpl7.fli">Prolog</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/fli/Prolog.html#current_engine_is_pool--">current_engine_is_pool()</a></span> - Static method in class org.jpl7.fli.<a href="org/jpl7/fli/Prolog.html" title="class in org.jpl7.fli">Prolog</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/fli/Prolog.html#current_query--">current_query()</a></span> - Static method in class org.jpl7.fli.<a href="org/jpl7/fli/Prolog.html" title="class in org.jpl7.fli">Prolog</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/fli/Prolog.html#CVT_ALL">CVT_ALL</a></span> - Static variable in class org.jpl7.fli.<a href="org/jpl7/fli/Prolog.html" title="class in org.jpl7.fli">Prolog</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/fli/Prolog.html#CVT_ATOM">CVT_ATOM</a></span> - Static variable in class org.jpl7.fli.<a href="org/jpl7/fli/Prolog.html" title="class in org.jpl7.fli">Prolog</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/fli/Prolog.html#CVT_ATOMIC">CVT_ATOMIC</a></span> - Static variable in class org.jpl7.fli.<a href="org/jpl7/fli/Prolog.html" title="class in org.jpl7.fli">Prolog</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/fli/Prolog.html#CVT_FLOAT">CVT_FLOAT</a></span> - Static variable in class org.jpl7.fli.<a href="org/jpl7/fli/Prolog.html" title="class in org.jpl7.fli">Prolog</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/fli/Prolog.html#CVT_INTEGER">CVT_INTEGER</a></span> - Static variable in class org.jpl7.fli.<a href="org/jpl7/fli/Prolog.html" title="class in org.jpl7.fli">Prolog</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/fli/Prolog.html#CVT_LIST">CVT_LIST</a></span> - Static variable in class org.jpl7.fli.<a href="org/jpl7/fli/Prolog.html" title="class in org.jpl7.fli">Prolog</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/fli/Prolog.html#CVT_NUMBER">CVT_NUMBER</a></span> - Static variable in class org.jpl7.fli.<a href="org/jpl7/fli/Prolog.html" title="class in org.jpl7.fli">Prolog</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/fli/Prolog.html#CVT_RATIONAL">CVT_RATIONAL</a></span> - Static variable in class org.jpl7.fli.<a href="org/jpl7/fli/Prolog.html" title="class in org.jpl7.fli">Prolog</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/fli/Prolog.html#CVT_STRING">CVT_STRING</a></span> - Static variable in class org.jpl7.fli.<a href="org/jpl7/fli/Prolog.html" title="class in org.jpl7.fli">Prolog</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/fli/Prolog.html#CVT_VARIABLE">CVT_VARIABLE</a></span> - Static variable in class org.jpl7.fli.<a href="org/jpl7/fli/Prolog.html" title="class in org.jpl7.fli">Prolog</a></dt>
<dd> </dd>
</dl>
<a name="I:D">
<!-- -->
</a>
<h2 class="title">D</h2>
<dl>
<dt><span class="memberNameLink"><a href="org/jpl7/JPL.html#DEBUG">DEBUG</a></span> - Static variable in class org.jpl7.<a href="org/jpl7/JPL.html" title="class in org.jpl7">JPL</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Rational.html#denominator">denominator</a></span> - Variable in class org.jpl7.<a href="org/jpl7/Rational.html" title="class in org.jpl7">Rational</a></dt>
<dd> </dd>
<dt><a href="org/jpl7/Dict.html" title="class in org.jpl7"><span class="typeNameLink">Dict</span></a> - Class in <a href="org/jpl7/package-summary.html">org.jpl7</a></dt>
<dd>
<div class="block">Dict is a specialised Term representing a Prolog dictionary of the form Tag{Key1:Value1, Key2:Value2, ...}.</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Dict.html#Dict-org.jpl7.Term-java.util.Map-">Dict(Term, Map<Atom, Term>)</a></span> - Constructor for class org.jpl7.<a href="org/jpl7/Dict.html" title="class in org.jpl7">Dict</a></dt>
<dd>
<div class="block">Creates a dictionary structure</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Dict.html#Dict-java.lang.String-">Dict(String)</a></span> - Constructor for class org.jpl7.<a href="org/jpl7/Dict.html" title="class in org.jpl7">Dict</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/fli/Prolog.html#DICT">DICT</a></span> - Static variable in class org.jpl7.fli.<a href="org/jpl7/fli/Prolog.html" title="class in org.jpl7.fli">Prolog</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/fli/Prolog.html#discard_foreign_frame-org.jpl7.fli.fid_t-">discard_foreign_frame(fid_t)</a></span> - Static method in class org.jpl7.fli.<a href="org/jpl7/fli/Prolog.html" title="class in org.jpl7.fli">Prolog</a></dt>
<dd> </dd>
<dt><a href="org/jpl7/fli/DoubleHolder.html" title="class in org.jpl7.fli"><span class="typeNameLink">DoubleHolder</span></a> - Class in <a href="org/jpl7/fli/package-summary.html">org.jpl7.fli</a></dt>
<dd>
<div class="block">A DoubleHolder is merely a Holder class for a double value.</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/fli/DoubleHolder.html#DoubleHolder--">DoubleHolder()</a></span> - Constructor for class org.jpl7.fli.<a href="org/jpl7/fli/DoubleHolder.html" title="class in org.jpl7.fli">DoubleHolder</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Float.html#doubleValue--">doubleValue()</a></span> - Method in class org.jpl7.<a href="org/jpl7/Float.html" title="class in org.jpl7">Float</a></dt>
<dd>
<div class="block">Returns the (double) value of this Float</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Integer.html#doubleValue--">doubleValue()</a></span> - Method in class org.jpl7.<a href="org/jpl7/Integer.html" title="class in org.jpl7">Integer</a></dt>
<dd>
<div class="block">Returns the value of this Integer converted to a double (perhaps Double.NEGATIVE_INFINITY or
Double.POSITIVE_INFINITY)</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Rational.html#doubleValue--">doubleValue()</a></span> - Method in class org.jpl7.<a href="org/jpl7/Rational.html" title="class in org.jpl7">Rational</a></dt>
<dd>
<div class="block">Returns the value of this Rational converted to a double</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Term.html#doubleValue--">doubleValue()</a></span> - Method in class org.jpl7.<a href="org/jpl7/Term.html" title="class in org.jpl7">Term</a></dt>
<dd>
<div class="block">the value (as a double) of an Integer or Float</div>
</dd>
</dl>
<a name="I:E">
<!-- -->
</a>
<h2 class="title">E</h2>
<dl>
<dt><a href="org/jpl7/fli/engine_t.html" title="class in org.jpl7.fli"><span class="typeNameLink">engine_t</span></a> - Class in <a href="org/jpl7/fli/package-summary.html">org.jpl7.fli</a></dt>
<dd>
<div class="block">A engine_t holds a reference to a Prolog engine.</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/fli/engine_t.html#engine_t--">engine_t()</a></span> - Constructor for class org.jpl7.fli.<a href="org/jpl7/fli/engine_t.html" title="class in org.jpl7.fli">engine_t</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Atom.html#equals-java.lang.Object-">equals(Object)</a></span> - Method in class org.jpl7.<a href="org/jpl7/Atom.html" title="class in org.jpl7">Atom</a></dt>
<dd>
<div class="block">Two Atoms are equal if they are identical (same object) or their respective names and blobTypes are equal</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Compound.html#equals-java.lang.Object-">equals(Object)</a></span> - Method in class org.jpl7.<a href="org/jpl7/Compound.html" title="class in org.jpl7">Compound</a></dt>
<dd>
<div class="block">Two Compounds are equal if they are identical (same object) or their names and arities are equal and their
respective arguments are equal.</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Dict.html#equals-java.lang.Object-">equals(Object)</a></span> - Method in class org.jpl7.<a href="org/jpl7/Dict.html" title="class in org.jpl7">Dict</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/fli/LongHolder.html#equals-java.lang.Object-">equals(Object)</a></span> - Method in class org.jpl7.fli.<a href="org/jpl7/fli/LongHolder.html" title="class in org.jpl7.fli">LongHolder</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/fli/term_t.html#equals-java.lang.Object-">equals(Object)</a></span> - Method in class org.jpl7.fli.<a href="org/jpl7/fli/term_t.html" title="class in org.jpl7.fli">term_t</a></dt>
<dd>
<div class="block">Instances of term_ts are stored in Term objects (see jpl.Term), and these
term_ts are in some cases stored in Hashtables.</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Float.html#equals-java.lang.Object-">equals(Object)</a></span> - Method in class org.jpl7.<a href="org/jpl7/Float.html" title="class in org.jpl7">Float</a></dt>
<dd>
<div class="block">Two Floats are equal if they are the same object, or their values are
equal</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Integer.html#equals-java.lang.Object-">equals(Object)</a></span> - Method in class org.jpl7.<a href="org/jpl7/Integer.html" title="class in org.jpl7">Integer</a></dt>
<dd>
<div class="block">two Integer instances are equal if their values are equal</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/JRef.html#equals-java.lang.Object-">equals(Object)</a></span> - Method in class org.jpl7.<a href="org/jpl7/JRef.html" title="class in org.jpl7">JRef</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Rational.html#equals-java.lang.Object-">equals(Object)</a></span> - Method in class org.jpl7.<a href="org/jpl7/Rational.html" title="class in org.jpl7">Rational</a></dt>
<dd>
<div class="block">Two Rationals instances are equal if their numerator and denominator match
(remember Rationals are stored in canonical form)</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Variable.html#equals-java.lang.Object-">equals(Object)</a></span> - Method in class org.jpl7.<a href="org/jpl7/Variable.html" title="class in org.jpl7">Variable</a></dt>
<dd>
<div class="block">A Variable is equal to another if their names are the same
Totally lexical textual interpretation of vars, not related to bindings
Anonymous var _ is always different (including to itsef)</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/fli/Prolog.html#exception-org.jpl7.fli.qid_t-">exception(qid_t)</a></span> - Static method in class org.jpl7.fli.<a href="org/jpl7/fli/Prolog.html" title="class in org.jpl7.fli">Prolog</a></dt>
<dd> </dd>
</dl>
<a name="I:F">
<!-- -->
</a>
<h2 class="title">F</h2>
<dl>
<dt><span class="memberNameLink"><a href="org/jpl7/fli/Prolog.html#fail">fail</a></span> - Static variable in class org.jpl7.fli.<a href="org/jpl7/fli/Prolog.html" title="class in org.jpl7.fli">Prolog</a></dt>
<dd> </dd>
<dt><a href="org/jpl7/fli/fid_t.html" title="class in org.jpl7.fli"><span class="typeNameLink">fid_t</span></a> - Class in <a href="org/jpl7/fli/package-summary.html">org.jpl7.fli</a></dt>
<dd>
<div class="block">An fid_t holds the value of a frame id in the Prolog Engine.</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/fli/fid_t.html#fid_t--">fid_t()</a></span> - Constructor for class org.jpl7.fli.<a href="org/jpl7/fli/fid_t.html" title="class in org.jpl7.fli">fid_t</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/fli/atom_t.html#finalize--">finalize()</a></span> - Method in class org.jpl7.fli.<a href="org/jpl7/fli/atom_t.html" title="class in org.jpl7.fli">atom_t</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/fli/Prolog.html#FLOAT">FLOAT</a></span> - Static variable in class org.jpl7.fli.<a href="org/jpl7/fli/Prolog.html" title="class in org.jpl7.fli">Prolog</a></dt>
<dd> </dd>
<dt><a href="org/jpl7/Float.html" title="class in org.jpl7"><span class="typeNameLink">Float</span></a> - Class in <a href="org/jpl7/package-summary.html">org.jpl7</a></dt>
<dd>
<div class="block">Float is a specialised Term with a double field, representing a Prolog 64-bit
ISO/IEC floating point value.</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Float.html#Float-double-">Float(double)</a></span> - Constructor for class org.jpl7.<a href="org/jpl7/Float.html" title="class in org.jpl7">Float</a></dt>
<dd>
<div class="block">Construct a Float with the supplied (double) value</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Float.html#floatValue--">floatValue()</a></span> - Method in class org.jpl7.<a href="org/jpl7/Float.html" title="class in org.jpl7">Float</a></dt>
<dd>
<div class="block">Returns the (double) value of this Float, converted to a float</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Integer.html#floatValue--">floatValue()</a></span> - Method in class org.jpl7.<a href="org/jpl7/Integer.html" title="class in org.jpl7">Integer</a></dt>
<dd>
<div class="block">Returns the value of this Integer converted to a float</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Rational.html#floatValue--">floatValue()</a></span> - Method in class org.jpl7.<a href="org/jpl7/Rational.html" title="class in org.jpl7">Rational</a></dt>
<dd>
<div class="block">Returns the value of this Rational converted to a float</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Term.html#floatValue--">floatValue()</a></span> - Method in class org.jpl7.<a href="org/jpl7/Term.html" title="class in org.jpl7">Term</a></dt>
<dd>
<div class="block">the value (as a float) of an Integer or Float</div>
</dd>
<dt><a href="org/jpl7/fli/functor_t.html" title="class in org.jpl7.fli"><span class="typeNameLink">functor_t</span></a> - Class in <a href="org/jpl7/fli/package-summary.html">org.jpl7.fli</a></dt>
<dd>
<div class="block">A functor_t holds a reference to a Prolog functor_t in the Prolog engine.</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/fli/functor_t.html#functor_t--">functor_t()</a></span> - Constructor for class org.jpl7.fli.<a href="org/jpl7/fli/functor_t.html" title="class in org.jpl7.fli">functor_t</a></dt>
<dd> </dd>
</dl>
<a name="I:G">
<!-- -->
</a>
<h2 class="title">G</h2>
<dl>
<dt><span class="memberNameLink"><a href="org/jpl7/fli/Prolog.html#get_actual_init_args--">get_actual_init_args()</a></span> - Static method in class org.jpl7.fli.<a href="org/jpl7/fli/Prolog.html" title="class in org.jpl7.fli">Prolog</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/fli/Prolog.html#get_arg-int-org.jpl7.fli.term_t-org.jpl7.fli.term_t-">get_arg(int, term_t, term_t)</a></span> - Static method in class org.jpl7.fli.<a href="org/jpl7/fli/Prolog.html" title="class in org.jpl7.fli">Prolog</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/fli/Prolog.html#get_atom_chars-org.jpl7.fli.term_t-org.jpl7.fli.StringHolder-">get_atom_chars(term_t, StringHolder)</a></span> - Static method in class org.jpl7.fli.<a href="org/jpl7/fli/Prolog.html" title="class in org.jpl7.fli">Prolog</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/fli/Prolog.html#get_c_lib_version--">get_c_lib_version()</a></span> - Static method in class org.jpl7.fli.<a href="org/jpl7/fli/Prolog.html" title="class in org.jpl7.fli">Prolog</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/fli/Prolog.html#get_default_init_args--">get_default_init_args()</a></span> - Static method in class org.jpl7.fli.<a href="org/jpl7/fli/Prolog.html" title="class in org.jpl7.fli">Prolog</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/fli/Prolog.html#get_float-org.jpl7.fli.term_t-org.jpl7.fli.DoubleHolder-">get_float(term_t, DoubleHolder)</a></span> - Static method in class org.jpl7.fli.<a href="org/jpl7/fli/Prolog.html" title="class in org.jpl7.fli">Prolog</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/fli/Prolog.html#get_integer-org.jpl7.fli.term_t-org.jpl7.fli.Int64Holder-">get_integer(term_t, Int64Holder)</a></span> - Static method in class org.jpl7.fli.<a href="org/jpl7/fli/Prolog.html" title="class in org.jpl7.fli">Prolog</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/fli/Prolog.html#get_integer_big-org.jpl7.fli.term_t-org.jpl7.fli.StringHolder-">get_integer_big(term_t, StringHolder)</a></span> - Static method in class org.jpl7.fli.<a href="org/jpl7/fli/Prolog.html" title="class in org.jpl7.fli">Prolog</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/fli/Prolog.html#get_jref_object-org.jpl7.fli.term_t-org.jpl7.fli.ObjectHolder-">get_jref_object(term_t, ObjectHolder)</a></span> - Static method in class org.jpl7.fli.<a href="org/jpl7/fli/Prolog.html" title="class in org.jpl7.fli">Prolog</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/fli/Prolog.html#get_name_arity-org.jpl7.fli.term_t-org.jpl7.fli.StringHolder-org.jpl7.fli.IntHolder-">get_name_arity(term_t, StringHolder, IntHolder)</a></span> - Static method in class org.jpl7.fli.<a href="org/jpl7/fli/Prolog.html" title="class in org.jpl7.fli">Prolog</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/fli/Prolog.html#get_rational-org.jpl7.fli.term_t-org.jpl7.fli.StringHolder-">get_rational(term_t, StringHolder)</a></span> - Static method in class org.jpl7.fli.<a href="org/jpl7/fli/Prolog.html" title="class in org.jpl7.fli">Prolog</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/fli/Prolog.html#get_string_chars-org.jpl7.fli.term_t-org.jpl7.fli.StringHolder-">get_string_chars(term_t, StringHolder)</a></span> - Static method in class org.jpl7.fli.<a href="org/jpl7/fli/Prolog.html" title="class in org.jpl7.fli">Prolog</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/fli/Prolog.html#get_syntax--">get_syntax()</a></span> - Static method in class org.jpl7.fli.<a href="org/jpl7/fli/Prolog.html" title="class in org.jpl7.fli">Prolog</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/JPL.html#getActualInitArgs--">getActualInitArgs()</a></span> - Static method in class org.jpl7.<a href="org/jpl7/JPL.html" title="class in org.jpl7">JPL</a></dt>
<dd>
<div class="block">Returns, in an array of String, the sequence of command-line arguments
that were actually used when the Prolog engine was formerly initialised.</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Query.html#getContext--">getContext()</a></span> - Method in class org.jpl7.<a href="org/jpl7/Query.html" title="class in org.jpl7">Query</a></dt>
<dd>
<div class="block">Returns the context module for this Query</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/JPL.html#getDefaultInitArgs--">getDefaultInitArgs()</a></span> - Static method in class org.jpl7.<a href="org/jpl7/JPL.html" title="class in org.jpl7">JPL</a></dt>
<dd>
<div class="block">Returns, in an array of String, the sequence of command-line arguments
that would be used if the Prolog engine were to be initialised now.</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Rational.html#getDenominator--">getDenominator()</a></span> - Method in class org.jpl7.<a href="org/jpl7/Rational.html" title="class in org.jpl7">Rational</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Query.html#getEngine--">getEngine()</a></span> - Method in class org.jpl7.<a href="org/jpl7/Query.html" title="class in org.jpl7">Query</a></dt>
<dd>
<div class="block">Returns the engine attached to this query</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Dict.html#getMap--">getMap()</a></span> - Method in class org.jpl7.<a href="org/jpl7/Dict.html" title="class in org.jpl7">Dict</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Rational.html#getNumerator--">getNumerator()</a></span> - Method in class org.jpl7.<a href="org/jpl7/Rational.html" title="class in org.jpl7">Rational</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Query.html#getSolution--">getSolution()</a></span> - Method in class org.jpl7.<a href="org/jpl7/Query.html" title="class in org.jpl7">Query</a></dt>
<dd>
<div class="block"><span class="deprecatedLabel">Deprecated.</span>
<div class="block"><span class="deprecationComment">use nextSolution()</span></div>
</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Query.html#getSolutionWithVarNames--">getSolutionWithVarNames()</a></span> - Method in class org.jpl7.<a href="org/jpl7/Query.html" title="class in org.jpl7">Query</a></dt>
<dd>
<div class="block"><span class="deprecatedLabel">Deprecated.</span></div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Compound.html#getSubst-java.util.Map-java.util.Map-">getSubst(Map<String, Term>, Map<term_t, Variable>)</a></span> - Method in class org.jpl7.<a href="org/jpl7/Compound.html" title="class in org.jpl7">Compound</a></dt>
<dd>
<div class="block">Nothing needs to be done except to pass the buck to this Compound's args.</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Term.html#getSubst-java.util.Map-java.util.Map-">getSubst(Map<String, Term>, Map<term_t, Variable>)</a></span> - Method in class org.jpl7.<a href="org/jpl7/Term.html" title="class in org.jpl7">Term</a></dt>
<dd>
<div class="block">This method computes a substitution from a Term (the current object).</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Variable.html#getSubst-java.util.Map-java.util.Map-">getSubst(Map<String, Term>, Map<term_t, Variable>)</a></span> - Method in class org.jpl7.<a href="org/jpl7/Variable.html" title="class in org.jpl7">Variable</a></dt>
<dd>
<div class="block">This can be used to get the **current** solution binding of the Variable instance.</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Term.html#getSubsts-java.util.Map-java.util.Map-org.jpl7.Term:A-">getSubsts(Map<String, Term>, Map<term_t, Variable>, Term[])</a></span> - Static method in class org.jpl7.<a href="org/jpl7/Term.html" title="class in org.jpl7">Term</a></dt>
<dd>
<div class="block">Just calls computeSubstitution for each Term in the array.</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Query.html#getSubstWithNameVars--">getSubstWithNameVars()</a></span> - Method in class org.jpl7.<a href="org/jpl7/Query.html" title="class in org.jpl7">Query</a></dt>
<dd>
<div class="block"><span class="deprecatedLabel">Deprecated.</span></div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/JPL.html#getSyntax--">getSyntax()</a></span> - Static method in class org.jpl7.<a href="org/jpl7/JPL.html" title="class in org.jpl7">JPL</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Dict.html#getTag--">getTag()</a></span> - Method in class org.jpl7.<a href="org/jpl7/Dict.html" title="class in org.jpl7">Dict</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Term.html#getTerm-java.util.Map-org.jpl7.fli.term_t-">getTerm(Map<term_t, Variable>, term_t)</a></span> - Static method in class org.jpl7.<a href="org/jpl7/Term.html" title="class in org.jpl7">Term</a></dt>
<dd>
<div class="block">create and return a org.jpl7.Term representation of the given Prolog term</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Term.html#getTerm-org.jpl7.fli.term_t-">getTerm(term_t)</a></span> - Static method in class org.jpl7.<a href="org/jpl7/Term.html" title="class in org.jpl7">Term</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Query.html#goal--">goal()</a></span> - Method in class org.jpl7.<a href="org/jpl7/Query.html" title="class in org.jpl7">Query</a></dt>
<dd>
<div class="block">Returns the Term (Atom or Compound) which is the goal of this Query</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Query.html#goal_">goal_</a></span> - Variable in class org.jpl7.<a href="org/jpl7/Query.html" title="class in org.jpl7">Query</a></dt>
<dd>
<div class="block">the Compound or Atom (but not Dict, Float, Integer or Variable)
corresponding to the goal of this Query</div>
</dd>
</dl>
<a name="I:H">
<!-- -->
</a>
<h2 class="title">H</h2>
<dl>
<dt><span class="memberNameLink"><a href="org/jpl7/fli/Prolog.html#halt-int-">halt(int)</a></span> - Static method in class org.jpl7.fli.<a href="org/jpl7/fli/Prolog.html" title="class in org.jpl7.fli">Prolog</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/JPL.html#halt--">halt()</a></span> - Static method in class org.jpl7.<a href="org/jpl7/JPL.html" title="class in org.jpl7">JPL</a></dt>
<dd>
<div class="block"><span class="deprecatedLabel">Deprecated.</span> </div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Atom.html#hasFunctor-java.lang.String-int-">hasFunctor(String, int)</a></span> - Method in class org.jpl7.<a href="org/jpl7/Atom.html" title="class in org.jpl7">Atom</a></dt>
<dd>
<div class="block">Tests whether this Compound's functor has (String) 'name' and 'arity'.</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Compound.html#hasFunctor-java.lang.String-int-">hasFunctor(String, int)</a></span> - Method in class org.jpl7.<a href="org/jpl7/Compound.html" title="class in org.jpl7">Compound</a></dt>
<dd>
<div class="block">Tests whether this Compound's functor has (String) 'name' and 'arity'.</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Dict.html#hasFunctor-org.jpl7.Term-int-">hasFunctor(Term, int)</a></span> - Method in class org.jpl7.<a href="org/jpl7/Dict.html" title="class in org.jpl7">Dict</a></dt>
<dd>
<div class="block">whether this Dictionary's functor has 'name' and 'arity' (c.f.</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Float.html#hasFunctor-double-int-">hasFunctor(double, int)</a></span> - Method in class org.jpl7.<a href="org/jpl7/Float.html" title="class in org.jpl7">Float</a></dt>
<dd>
<div class="block">Tests whether this Float's functor has (double) 'name' and 'arity'</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Integer.html#hasFunctor-long-int-">hasFunctor(long, int)</a></span> - Method in class org.jpl7.<a href="org/jpl7/Integer.html" title="class in org.jpl7">Integer</a></dt>
<dd>
<div class="block">whether this Integer's functor has (long) 'name' and 'arity' (c.f.</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Integer.html#hasFunctor-java.math.BigInteger-int-">hasFunctor(BigInteger, int)</a></span> - Method in class org.jpl7.<a href="org/jpl7/Integer.html" title="class in org.jpl7">Integer</a></dt>
<dd>
<div class="block">whether this Integer's functor has (BigInteger) 'name' and 'arity' (c.f.</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/JRef.html#hasFunctor-java.lang.String-int-">hasFunctor(String, int)</a></span> - Method in class org.jpl7.<a href="org/jpl7/JRef.html" title="class in org.jpl7">JRef</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Rational.html#hasFunctor-long-int-">hasFunctor(long, int)</a></span> - Method in class org.jpl7.<a href="org/jpl7/Rational.html" title="class in org.jpl7">Rational</a></dt>
<dd>
<div class="block">whether this Rational's functor has (long) 'name' and 'arity' (c.f.</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Term.html#hasFunctor-java.lang.String-int-">hasFunctor(String, int)</a></span> - Method in class org.jpl7.<a href="org/jpl7/Term.html" title="class in org.jpl7">Term</a></dt>
<dd>
<div class="block">Whether this Term's functor has 'name' and 'arity' (c.f.</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Term.html#hasFunctor-long-int-">hasFunctor(long, int)</a></span> - Method in class org.jpl7.<a href="org/jpl7/Term.html" title="class in org.jpl7">Term</a></dt>
<dd>
<div class="block">Tests whether this Term's functor has 'name' and 'arity'</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Term.html#hasFunctor-java.math.BigInteger-int-">hasFunctor(BigInteger, int)</a></span> - Method in class org.jpl7.<a href="org/jpl7/Term.html" title="class in org.jpl7">Term</a></dt>
<dd>
<div class="block">Tests whether this Term's functor has 'name' and 'arity'</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Term.html#hasFunctor-double-int-">hasFunctor(double, int)</a></span> - Method in class org.jpl7.<a href="org/jpl7/Term.html" title="class in org.jpl7">Term</a></dt>
<dd>
<div class="block">Tests whether this Term's functor has 'name' and 'arity'</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Variable.html#hasFunctor-java.math.BigInteger-int-">hasFunctor(BigInteger, int)</a></span> - Method in class org.jpl7.<a href="org/jpl7/Variable.html" title="class in org.jpl7">Variable</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Variable.html#hasFunctor-java.lang.String-int-">hasFunctor(String, int)</a></span> - Method in class org.jpl7.<a href="org/jpl7/Variable.html" title="class in org.jpl7">Variable</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Variable.html#hasFunctor-long-int-">hasFunctor(long, int)</a></span> - Method in class org.jpl7.<a href="org/jpl7/Variable.html" title="class in org.jpl7">Variable</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Variable.html#hasFunctor-double-int-">hasFunctor(double, int)</a></span> - Method in class org.jpl7.<a href="org/jpl7/Variable.html" title="class in org.jpl7">Variable</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Atom.html#hashCode--">hashCode()</a></span> - Method in class org.jpl7.<a href="org/jpl7/Atom.html" title="class in org.jpl7">Atom</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Compound.html#hashCode--">hashCode()</a></span> - Method in class org.jpl7.<a href="org/jpl7/Compound.html" title="class in org.jpl7">Compound</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Dict.html#hashCode--">hashCode()</a></span> - Method in class org.jpl7.<a href="org/jpl7/Dict.html" title="class in org.jpl7">Dict</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/fli/LongHolder.html#hashCode--">hashCode()</a></span> - Method in class org.jpl7.fli.<a href="org/jpl7/fli/LongHolder.html" title="class in org.jpl7.fli">LongHolder</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Float.html#hashCode--">hashCode()</a></span> - Method in class org.jpl7.<a href="org/jpl7/Float.html" title="class in org.jpl7">Float</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Integer.html#hashCode--">hashCode()</a></span> - Method in class org.jpl7.<a href="org/jpl7/Integer.html" title="class in org.jpl7">Integer</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/JRef.html#hashCode--">hashCode()</a></span> - Method in class org.jpl7.<a href="org/jpl7/JRef.html" title="class in org.jpl7">JRef</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Rational.html#hashCode--">hashCode()</a></span> - Method in class org.jpl7.<a href="org/jpl7/Rational.html" title="class in org.jpl7">Rational</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Variable.html#hashCode--">hashCode()</a></span> - Method in class org.jpl7.<a href="org/jpl7/Variable.html" title="class in org.jpl7">Variable</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Query.html#hasMoreElements--">hasMoreElements()</a></span> - Method in class org.jpl7.<a href="org/jpl7/Query.html" title="class in org.jpl7">Query</a></dt>
<dd>
<div class="block">This method implements part of the java.util.Enumeration interface.</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Query.html#hasMoreSolutions--">hasMoreSolutions()</a></span> - Method in class org.jpl7.<a href="org/jpl7/Query.html" title="class in org.jpl7">Query</a></dt>
<dd>
<div class="block">This method returns true if JPL was able to initiate a "call" of this
Query within a Prolog engine.</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Query.html#hasNext--">hasNext()</a></span> - Method in class org.jpl7.<a href="org/jpl7/Query.html" title="class in org.jpl7">Query</a></dt>
<dd>
<div class="block">This method is required by Iterator interface
It is a wrapper for <a href="org/jpl7/Query.html#hasMoreSolutions--"><code>Query.hasMoreSolutions()</code></a></div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Query.html#hasSolution--">hasSolution()</a></span> - Method in class org.jpl7.<a href="org/jpl7/Query.html" title="class in org.jpl7">Query</a></dt>
<dd>
<div class="block">This method will attempt to call this Query's goal within an available
Prolog engine.</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Query.html#hasSolution-org.jpl7.Term-">hasSolution(Term)</a></span> - Static method in class org.jpl7.<a href="org/jpl7/Query.html" title="class in org.jpl7">Query</a></dt>
<dd>
<div class="block">This static method creates a Query (whose goal is the specified Term) and
calls it at most once, returning true if a solution was found, else
false.</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Query.html#hasSolution-java.lang.String-">hasSolution(String)</a></span> - Static method in class org.jpl7.<a href="org/jpl7/Query.html" title="class in org.jpl7">Query</a></dt>
<dd>
<div class="block">This static method creates a Query from the given Prolog source text and
calls it at most once, returning true if a solution was found, else
false.</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Query.html#hasSolution-java.lang.String-org.jpl7.Term:A-">hasSolution(String, Term[])</a></span> - Static method in class org.jpl7.<a href="org/jpl7/Query.html" title="class in org.jpl7">Query</a></dt>
<dd>
<div class="block">If text denotes (in traditional Prolog source syntax) a term containing N
questionmark (?) symbols and there are N params, each questionmark symbol
is replaced by its corresponding arg to provide the new Query's goal: the
resulting Query is called as described above.</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Query.html#hostModule">hostModule</a></span> - Variable in class org.jpl7.<a href="org/jpl7/Query.html" title="class in org.jpl7">Query</a></dt>
<dd> </dd>
</dl>
<a name="I:I">
<!-- -->
</a>
<h2 class="title">I</h2>
<dl>
<dt><span class="memberNameLink"><a href="org/jpl7/Variable.html#index">index</a></span> - Variable in class org.jpl7.<a href="org/jpl7/Variable.html" title="class in org.jpl7">Variable</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/JPL.html#init-java.lang.String:A-">init(String[])</a></span> - Static method in class org.jpl7.<a href="org/jpl7/JPL.html" title="class in org.jpl7">JPL</a></dt>
<dd>
<div class="block">Initializes the Prolog engine, using the String argument parameters
passed.</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/JPL.html#init--">init()</a></span> - Static method in class org.jpl7.<a href="org/jpl7/JPL.html" title="class in org.jpl7">JPL</a></dt>
<dd>
<div class="block">Initialises the Prolog engine using the current default initialisation
parameters, and returns 'true' (or 'false' if already initialised).</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/fli/Prolog.html#initialise--">initialise()</a></span> - Static method in class org.jpl7.fli.<a href="org/jpl7/fli/Prolog.html" title="class in org.jpl7.fli">Prolog</a></dt>
<dd> </dd>
<dt><a href="org/jpl7/fli/Int64Holder.html" title="class in org.jpl7.fli"><span class="typeNameLink">Int64Holder</span></a> - Class in <a href="org/jpl7/fli/package-summary.html">org.jpl7.fli</a></dt>
<dd>
<div class="block">An Int64Holder is merely a Holder class for an int64 value.</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/fli/Int64Holder.html#Int64Holder--">Int64Holder()</a></span> - Constructor for class org.jpl7.fli.<a href="org/jpl7/fli/Int64Holder.html" title="class in org.jpl7.fli">Int64Holder</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Term.html#intArrayArrayToList-int:A:A-">intArrayArrayToList(int[][])</a></span> - Static method in class org.jpl7.<a href="org/jpl7/Term.html" title="class in org.jpl7">Term</a></dt>
<dd>
<div class="block">Converts an array of arrays of int to a corresponding JPL list of lists</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Util.html#intArrayArrayToList-int:A:A-">intArrayArrayToList(int[][])</a></span> - Static method in class org.jpl7.<a href="org/jpl7/Util.html" title="class in org.jpl7">Util</a></dt>
<dd>
<div class="block"><span class="deprecatedLabel">Deprecated.</span>
<div class="block"><span class="deprecationComment">Use <a href="org/jpl7/Term.html#intArrayArrayToList-int:A:A-"><code>Term.intArrayArrayToList(int[][] a)</code></a></span></div>
</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Term.html#intArrayToList-int:A-">intArrayToList(int[])</a></span> - Static method in class org.jpl7.<a href="org/jpl7/Term.html" title="class in org.jpl7">Term</a></dt>
<dd>
<div class="block">Converts an array of int to a corresponding JPL list</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Util.html#intArrayToList-int:A-">intArrayToList(int[])</a></span> - Static method in class org.jpl7.<a href="org/jpl7/Util.html" title="class in org.jpl7">Util</a></dt>
<dd>
<div class="block"><span class="deprecatedLabel">Deprecated.</span>
<div class="block"><span class="deprecationComment">Use <a href="org/jpl7/Term.html#intArrayToList-int:A-"><code>Term.intArrayToList(int[] a)</code></a></span></div>
</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/fli/Prolog.html#INTEGER">INTEGER</a></span> - Static variable in class org.jpl7.fli.<a href="org/jpl7/fli/Prolog.html" title="class in org.jpl7.fli">Prolog</a></dt>
<dd> </dd>
<dt><a href="org/jpl7/Integer.html" title="class in org.jpl7"><span class="typeNameLink">Integer</span></a> - Class in <a href="org/jpl7/package-summary.html">org.jpl7</a></dt>
<dd>
<div class="block">Integer is a specialised Term representing a Prolog integer value; if the value fits, it is held in a long field,
else as a BigInteger.</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Integer.html#Integer-long-">Integer(long)</a></span> - Constructor for class org.jpl7.<a href="org/jpl7/Integer.html" title="class in org.jpl7">Integer</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Integer.html#Integer-java.math.BigInteger-">Integer(BigInteger)</a></span> - Constructor for class org.jpl7.<a href="org/jpl7/Integer.html" title="class in org.jpl7">Integer</a></dt>
<dd> </dd>
<dt><a href="org/jpl7/fli/IntHolder.html" title="class in org.jpl7.fli"><span class="typeNameLink">IntHolder</span></a> - Class in <a href="org/jpl7/fli/package-summary.html">org.jpl7.fli</a></dt>
<dd>
<div class="block">An IntHolder is merely a Holder class for an Int value.</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/fli/IntHolder.html#IntHolder--">IntHolder()</a></span> - Constructor for class org.jpl7.fli.<a href="org/jpl7/fli/IntHolder.html" title="class in org.jpl7.fli">IntHolder</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Float.html#intValue--">intValue()</a></span> - Method in class org.jpl7.<a href="org/jpl7/Float.html" title="class in org.jpl7">Float</a></dt>
<dd>
<div class="block">Returns the (double) value of this Float, converted to an int</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Integer.html#intValue--">intValue()</a></span> - Method in class org.jpl7.<a href="org/jpl7/Integer.html" title="class in org.jpl7">Integer</a></dt>
<dd>
<div class="block">Returns the value of this Integer as an int if possible, else throws a JPLException</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Rational.html#intValue--">intValue()</a></span> - Method in class org.jpl7.<a href="org/jpl7/Rational.html" title="class in org.jpl7">Rational</a></dt>
<dd>
<div class="block">Returns the value of this Rational as an int if possible, else throws a JPLException</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Term.html#intValue--">intValue()</a></span> - Method in class org.jpl7.<a href="org/jpl7/Term.html" title="class in org.jpl7">Term</a></dt>
<dd>
<div class="block">returns the value (as an int) of an Integer or Float</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/fli/Prolog.html#is_tag-java.lang.String-">is_tag(String)</a></span> - Static method in class org.jpl7.fli.<a href="org/jpl7/fli/Prolog.html" title="class in org.jpl7.fli">Prolog</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Term.html#isAtom--">isAtom()</a></span> - Method in class org.jpl7.<a href="org/jpl7/Term.html" title="class in org.jpl7">Term</a></dt>
<dd>
<div class="block">whether this Term is an Atom (of any type)</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Atom.html#isAtomOfNameType-java.lang.String-java.lang.String-">isAtomOfNameType(String, String)</a></span> - Method in class org.jpl7.<a href="org/jpl7/Atom.html" title="class in org.jpl7">Atom</a></dt>
<dd>
<div class="block">for internal use only</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Term.html#isAtomOfNameType-java.lang.String-java.lang.String-">isAtomOfNameType(String, String)</a></span> - Method in class org.jpl7.<a href="org/jpl7/Term.html" title="class in org.jpl7">Term</a></dt>
<dd>
<div class="block">Tests whether this Term is an Atom with name and type.</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Integer.html#isBig--">isBig()</a></span> - Method in class org.jpl7.<a href="org/jpl7/Integer.html" title="class in org.jpl7">Integer</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Term.html#isBig--">isBig()</a></span> - Method in class org.jpl7.<a href="org/jpl7/Term.html" title="class in org.jpl7">Term</a></dt>
<dd>
<div class="block">Tests whether this Integer's value is too big to represent as a long.</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Term.html#isBigInteger--">isBigInteger()</a></span> - Method in class org.jpl7.<a href="org/jpl7/Term.html" title="class in org.jpl7">Term</a></dt>
<dd>
<div class="block">Tests whether this Term is an Integer whose value is too big to represent as a long</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Term.html#isCompound--">isCompound()</a></span> - Method in class org.jpl7.<a href="org/jpl7/Term.html" title="class in org.jpl7">Term</a></dt>
<dd>
<div class="block">Tests whether this Term is a Compound.</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Term.html#isFloat--">isFloat()</a></span> - Method in class org.jpl7.<a href="org/jpl7/Term.html" title="class in org.jpl7">Term</a></dt>
<dd>
<div class="block">Tests whether this Term is an org.jpl7.Float.</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Term.html#isInteger--">isInteger()</a></span> - Method in class org.jpl7.<a href="org/jpl7/Term.html" title="class in org.jpl7">Term</a></dt>
<dd>
<div class="block">Tests whether this Term is an org.jpl7.Integer.</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Compound.html#isJFalse--">isJFalse()</a></span> - Method in class org.jpl7.<a href="org/jpl7/Compound.html" title="class in org.jpl7">Compound</a></dt>
<dd>
<div class="block">whether this Term is a 'jboolean' structure denoting Java's false, i.e.</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Term.html#isJFalse--">isJFalse()</a></span> - Method in class org.jpl7.<a href="org/jpl7/Term.html" title="class in org.jpl7">Term</a></dt>
<dd>
<div class="block">Tests whether this Term is a 'jfalse' structure, i.e.</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Compound.html#isJNull--">isJNull()</a></span> - Method in class org.jpl7.<a href="org/jpl7/Compound.html" title="class in org.jpl7">Compound</a></dt>
<dd>
<div class="block">whether this Term is a 'jnull' structure, i.e.</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Term.html#isJNull--">isJNull()</a></span> - Method in class org.jpl7.<a href="org/jpl7/Term.html" title="class in org.jpl7">Term</a></dt>
<dd>
<div class="block">Tests whether this Term is a 'jnull' structure, i.e.</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Term.html#isJRef--">isJRef()</a></span> - Method in class org.jpl7.<a href="org/jpl7/Term.html" title="class in org.jpl7">Term</a></dt>
<dd>
<div class="block">Tests whether this Term is a (non-null, non-String) JPL reference to a Java object, e.g.</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Compound.html#isJTrue--">isJTrue()</a></span> - Method in class org.jpl7.<a href="org/jpl7/Compound.html" title="class in org.jpl7">Compound</a></dt>
<dd>
<div class="block">whether this Term is a 'jboolean' structure denoting Java's true, i.e.</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Term.html#isJTrue--">isJTrue()</a></span> - Method in class org.jpl7.<a href="org/jpl7/Term.html" title="class in org.jpl7">Term</a></dt>
<dd>
<div class="block">Tests whether this Term is a 'jtrue' structure, i.e.</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Compound.html#isJVoid--">isJVoid()</a></span> - Method in class org.jpl7.<a href="org/jpl7/Compound.html" title="class in org.jpl7">Compound</a></dt>
<dd>
<div class="block">whether this Term is a 'jvoid' structure, i.e.</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Term.html#isJVoid--">isJVoid()</a></span> - Method in class org.jpl7.<a href="org/jpl7/Term.html" title="class in org.jpl7">Term</a></dt>
<dd>
<div class="block">Tests whether this Term is a 'jvoid' structure, i.e.</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Term.html#isList--">isList()</a></span> - Method in class org.jpl7.<a href="org/jpl7/Term.html" title="class in org.jpl7">Term</a></dt>
<dd>
<div class="block">whether the Term represents a proper list</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Term.html#isList-org.jpl7.Term-">isList(Term)</a></span> - Static method in class org.jpl7.<a href="org/jpl7/Term.html" title="class in org.jpl7">Term</a></dt>
<dd>
<div class="block">whether the Term represents a proper list</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Util.html#isList-org.jpl7.Term-">isList(Term)</a></span> - Static method in class org.jpl7.<a href="org/jpl7/Util.html" title="class in org.jpl7">Util</a></dt>
<dd>
<div class="block"><span class="deprecatedLabel">Deprecated.</span>
<div class="block"><span class="deprecationComment">Use <a href="org/jpl7/Term.html#isList-org.jpl7.Term-"><code>Term.isList(Term)</code></a></span></div>
</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Atom.html#isListNil--">isListNil()</a></span> - Method in class org.jpl7.<a href="org/jpl7/Atom.html" title="class in org.jpl7">Atom</a></dt>
<dd>
<div class="block">whether this Term denotes (syntax-specifically) an empty list</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Term.html#isListNil--">isListNil()</a></span> - Method in class org.jpl7.<a href="org/jpl7/Term.html" title="class in org.jpl7">Term</a></dt>
<dd>
<div class="block">Tests whether this Term denotes an empty list within the current syntax ("traditional" or "modern").</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Compound.html#isListPair--">isListPair()</a></span> - Method in class org.jpl7.<a href="org/jpl7/Compound.html" title="class in org.jpl7">Compound</a></dt>
<dd>
<div class="block">whether this Term denotes (syntax-specifically) a list cell
see this does not check the shape of the second argument to check if it is a list
So a list pair may not be a list itself and hence isList() will return false
as the second argument many not be a list</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Term.html#isListPair--">isListPair()</a></span> - Method in class org.jpl7.<a href="org/jpl7/Term.html" title="class in org.jpl7">Term</a></dt>
<dd>
<div class="block">Tests whether this Term is a list pair within the current
syntax ("traditional" or "modern").</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Query.html#isOpen--">isOpen()</a></span> - Method in class org.jpl7.<a href="org/jpl7/Query.html" title="class in org.jpl7">Query</a></dt>
<dd>
<div class="block">Whether the query is open.</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/JPL.html#isSimpleName-java.lang.String-">isSimpleName(String)</a></span> - Static method in class org.jpl7.<a href="org/jpl7/JPL.html" title="class in org.jpl7">JPL</a></dt>
<dd>
<div class="block">Checks if a string is a simple atom, with no quoting needed</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Term.html#isVariable--">isVariable()</a></span> - Method in class org.jpl7.<a href="org/jpl7/Term.html" title="class in org.jpl7">Term</a></dt>
<dd>
<div class="block">Tests whether this Term is a Variable.</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Query.html#iterator--">iterator()</a></span> - Method in class org.jpl7.<a href="org/jpl7/Query.html" title="class in org.jpl7">Query</a></dt>
<dd>
<div class="block">This method is required by Iterator interface
a Query is its own Iterator</div>
</dd>
</dl>
<a name="I:J">
<!-- -->
</a>
<h2 class="title">J</h2>
<dl>
<dt><span class="memberNameLink"><a href="org/jpl7/JPL.html#jarPath--">jarPath()</a></span> - Static method in class org.jpl7.<a href="org/jpl7/JPL.html" title="class in org.jpl7">JPL</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/fli/Prolog.html#JBOOLEAN">JBOOLEAN</a></span> - Static variable in class org.jpl7.fli.<a href="org/jpl7/fli/Prolog.html" title="class in org.jpl7.fli">Prolog</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/JPL.html#JFALSE">JFALSE</a></span> - Static variable in class org.jpl7.<a href="org/jpl7/JPL.html" title="class in org.jpl7">JPL</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/JPL.html#JNULL">JNULL</a></span> - Static variable in class org.jpl7.<a href="org/jpl7/JPL.html" title="class in org.jpl7">JPL</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/fli/Prolog.html#JOBJECT">JOBJECT</a></span> - Static variable in class org.jpl7.fli.<a href="org/jpl7/fli/Prolog.html" title="class in org.jpl7.fli">Prolog</a></dt>
<dd> </dd>
<dt><a href="org/jpl7/JPL.html" title="class in org.jpl7"><span class="typeNameLink">JPL</span></a> - Class in <a href="org/jpl7/package-summary.html">org.jpl7</a></dt>
<dd>
<div class="block">The jpl.JPL class contains static methods which allow (i) inspection and
alteration of the "default" initialisation arguments (ii) explicit
initialisation (iii) discovery of whether the Prolog engine is already
initialised, and if so, with what arguments.</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/JPL.html#JPL--">JPL()</a></span> - Constructor for class org.jpl7.<a href="org/jpl7/JPL.html" title="class in org.jpl7">JPL</a></dt>
<dd> </dd>
<dt><a href="org/jpl7/JPLException.html" title="class in org.jpl7"><span class="typeNameLink">JPLException</span></a> - Exception in <a href="org/jpl7/package-summary.html">org.jpl7</a></dt>
<dd>
<div class="block">This is the base class for exceptions thrown by JPL's Java-calls-Prolog
interface.</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/JPLException.html#JPLException--">JPLException()</a></span> - Constructor for exception org.jpl7.<a href="org/jpl7/JPLException.html" title="class in org.jpl7">JPLException</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/JPLException.html#JPLException-java.lang.String-">JPLException(String)</a></span> - Constructor for exception org.jpl7.<a href="org/jpl7/JPLException.html" title="class in org.jpl7">JPLException</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/fli/Prolog.html#JREF">JREF</a></span> - Static variable in class org.jpl7.fli.<a href="org/jpl7/fli/Prolog.html" title="class in org.jpl7.fli">Prolog</a></dt>
<dd> </dd>
<dt><a href="org/jpl7/JRef.html" title="class in org.jpl7"><span class="typeNameLink">JRef</span></a> - Class in <a href="org/jpl7/package-summary.html">org.jpl7</a></dt>
<dd>
<div class="block">JRef is a specialised Term with a (non-null, non-String) Object field, representing JPL 7.4's Prolog references to Java objects, e.g.</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/JRef.html#JRef-java.lang.Object-">JRef(Object)</a></span> - Constructor for class org.jpl7.<a href="org/jpl7/JRef.html" title="class in org.jpl7">JRef</a></dt>
<dd>
<div class="block">This constructor creates a JRef, initialized with the supplied (non-null, non-String) Object.</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Term.html#jrefToObject--">jrefToObject()</a></span> - Method in class org.jpl7.<a href="org/jpl7/Term.html" title="class in org.jpl7">Term</a></dt>
<dd>
<div class="block"><span class="deprecatedLabel">Deprecated.</span>
<div class="block"><span class="deprecationComment">Use <a href="org/jpl7/Term.html#object--"><code>Term.object()</code></a></span></div>
</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/JPL.html#JTRUE">JTRUE</a></span> - Static variable in class org.jpl7.<a href="org/jpl7/JPL.html" title="class in org.jpl7">JPL</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/fli/Prolog.html#JVOID">JVOID</a></span> - Static variable in class org.jpl7.fli.<a href="org/jpl7/fli/Prolog.html" title="class in org.jpl7.fli">Prolog</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/JPL.html#JVOID">JVOID</a></span> - Static variable in class org.jpl7.<a href="org/jpl7/JPL.html" title="class in org.jpl7">JPL</a></dt>
<dd> </dd>
</dl>
<a name="I:L">
<!-- -->
</a>
<h2 class="title">L</h2>
<dl>
<dt><span class="memberNameLink"><a href="org/jpl7/fli/Prolog.html#LIST_NIL">LIST_NIL</a></span> - Static variable in class org.jpl7.fli.<a href="org/jpl7/fli/Prolog.html" title="class in org.jpl7.fli">Prolog</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/JPL.html#LIST_NIL">LIST_NIL</a></span> - Static variable in class org.jpl7.<a href="org/jpl7/JPL.html" title="class in org.jpl7">JPL</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/JPL.html#LIST_NIL_MODERN">LIST_NIL_MODERN</a></span> - Static variable in class org.jpl7.<a href="org/jpl7/JPL.html" title="class in org.jpl7">JPL</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/JPL.html#LIST_NIL_TRADITIONAL">LIST_NIL_TRADITIONAL</a></span> - Static variable in class org.jpl7.<a href="org/jpl7/JPL.html" title="class in org.jpl7">JPL</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/fli/Prolog.html#LIST_PAIR">LIST_PAIR</a></span> - Static variable in class org.jpl7.fli.<a href="org/jpl7/fli/Prolog.html" title="class in org.jpl7.fli">Prolog</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/JPL.html#LIST_PAIR">LIST_PAIR</a></span> - Static variable in class org.jpl7.<a href="org/jpl7/JPL.html" title="class in org.jpl7">JPL</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/JPL.html#LIST_PAIR_MODERN">LIST_PAIR_MODERN</a></span> - Static variable in class org.jpl7.<a href="org/jpl7/JPL.html" title="class in org.jpl7">JPL</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/JPL.html#LIST_PAIR_TRADITIONAL">LIST_PAIR_TRADITIONAL</a></span> - Static variable in class org.jpl7.<a href="org/jpl7/JPL.html" title="class in org.jpl7">JPL</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/JPL.html#LIST_TOSTRING_TEXTUAL">LIST_TOSTRING_TEXTUAL</a></span> - Static variable in class org.jpl7.<a href="org/jpl7/JPL.html" title="class in org.jpl7">JPL</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Term.html#listLength-org.jpl7.Term-">listLength(Term)</a></span> - Static method in class org.jpl7.<a href="org/jpl7/Term.html" title="class in org.jpl7">Term</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Term.html#listLength--">listLength()</a></span> - Method in class org.jpl7.<a href="org/jpl7/Term.html" title="class in org.jpl7">Term</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Util.html#listToLength-org.jpl7.Term-">listToLength(Term)</a></span> - Static method in class org.jpl7.<a href="org/jpl7/Util.html" title="class in org.jpl7">Util</a></dt>
<dd>
<div class="block"><span class="deprecatedLabel">Deprecated.</span>
<div class="block"><span class="deprecationComment">Use <a href="org/jpl7/Term.html#listLength-org.jpl7.Term-"><code>Term.listLength(Term)</code></a></span></div>
</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Term.html#listToTermArray-org.jpl7.Term-">listToTermArray(Term)</a></span> - Static method in class org.jpl7.<a href="org/jpl7/Term.html" title="class in org.jpl7">Term</a></dt>
<dd>
<div class="block">converts a proper list to an array of terms, else throws an exception</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Term.html#listToTermArray--">listToTermArray()</a></span> - Method in class org.jpl7.<a href="org/jpl7/Term.html" title="class in org.jpl7">Term</a></dt>
<dd>
<div class="block">converts a proper list to an array of terms, else throws an exception</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Util.html#listToTermArray-org.jpl7.Term-">listToTermArray(Term)</a></span> - Static method in class org.jpl7.<a href="org/jpl7/Util.html" title="class in org.jpl7">Util</a></dt>
<dd>
<div class="block"><span class="deprecatedLabel">Deprecated.</span>
<div class="block"><span class="deprecationComment">Use <a href="org/jpl7/Term.html#listToTermArray-org.jpl7.Term-"><code>Term.listToTermArray(Term)</code></a></span></div>
</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/JPL.html#loadNativeLibrary--">loadNativeLibrary()</a></span> - Static method in class org.jpl7.<a href="org/jpl7/JPL.html" title="class in org.jpl7">JPL</a></dt>
<dd> </dd>
<dt><a href="org/jpl7/fli/LongHolder.html" title="class in org.jpl7.fli"><span class="typeNameLink">LongHolder</span></a> - Class in <a href="org/jpl7/fli/package-summary.html">org.jpl7.fli</a></dt>
<dd>
<div class="block">A Long Holder merely holds a long value.</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/fli/LongHolder.html#LongHolder--">LongHolder()</a></span> - Constructor for class org.jpl7.fli.<a href="org/jpl7/fli/LongHolder.html" title="class in org.jpl7.fli">LongHolder</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Float.html#longValue--">longValue()</a></span> - Method in class org.jpl7.<a href="org/jpl7/Float.html" title="class in org.jpl7">Float</a></dt>
<dd>
<div class="block">Returns the (double) value of this Float, converted to a long</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Integer.html#longValue--">longValue()</a></span> - Method in class org.jpl7.<a href="org/jpl7/Integer.html" title="class in org.jpl7">Integer</a></dt>
<dd>
<div class="block">Returns the value of this org.jpl7.Integer as a long</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Rational.html#longValue--">longValue()</a></span> - Method in class org.jpl7.<a href="org/jpl7/Rational.html" title="class in org.jpl7">Rational</a></dt>
<dd>
<div class="block">Returns the value of this org.jpl7.Rational as a long</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Term.html#longValue--">longValue()</a></span> - Method in class org.jpl7.<a href="org/jpl7/Term.html" title="class in org.jpl7">Term</a></dt>
<dd>
<div class="block">The (long) value of a Float or Integer.</div>
</dd>
</dl>
<a name="I:M">
<!-- -->
</a>
<h2 class="title">M</h2>
<dl>
<dt><span class="memberNameLink"><a href="org/jpl7/JPL.html#main-java.lang.String:A-">main(String[])</a></span> - Static method in class org.jpl7.<a href="org/jpl7/JPL.html" title="class in org.jpl7">JPL</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Dict.html#map">map</a></span> - Variable in class org.jpl7.<a href="org/jpl7/Dict.html" title="class in org.jpl7">Dict</a></dt>
<dd>
<div class="block">The mapping of the dictionary</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/JPL.html#modeDontTellMe">modeDontTellMe</a></span> - Static variable in class org.jpl7.<a href="org/jpl7/JPL.html" title="class in org.jpl7">JPL</a></dt>
<dd> </dd>
<dt><a href="org/jpl7/fli/module_t.html" title="class in org.jpl7.fli"><span class="typeNameLink">module_t</span></a> - Class in <a href="org/jpl7/fli/package-summary.html">org.jpl7.fli</a></dt>
<dd>
<div class="block">A module_t is a PointerHolder type which holds a reference to a Prolog
module_t reference.</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/fli/module_t.html#module_t--">module_t()</a></span> - Constructor for class org.jpl7.fli.<a href="org/jpl7/fli/module_t.html" title="class in org.jpl7.fli">module_t</a></dt>
<dd> </dd>
</dl>
<a name="I:N">
<!-- -->
</a>
<h2 class="title">N</h2>
<dl>
<dt><span class="memberNameLink"><a href="org/jpl7/Atom.html#name">name</a></span> - Variable in class org.jpl7.<a href="org/jpl7/Atom.html" title="class in org.jpl7">Atom</a></dt>
<dd>
<div class="block">the name of this Atom</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Atom.html#name--">name()</a></span> - Method in class org.jpl7.<a href="org/jpl7/Atom.html" title="class in org.jpl7">Atom</a></dt>
<dd>
<div class="block">the name (unquoted) of this Compound</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Compound.html#name">name</a></span> - Variable in class org.jpl7.<a href="org/jpl7/Compound.html" title="class in org.jpl7">Compound</a></dt>
<dd>
<div class="block">The name of (the functor of) this Compound.</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Compound.html#name--">name()</a></span> - Method in class org.jpl7.<a href="org/jpl7/Compound.html" title="class in org.jpl7">Compound</a></dt>
<dd>
<div class="block">the name (unquoted) of this Compound</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Term.html#name--">name()</a></span> - Method in class org.jpl7.<a href="org/jpl7/Term.html" title="class in org.jpl7">Term</a></dt>
<dd>
<div class="block">The name of an Atom, Compound or Variable.</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Variable.html#name">name</a></span> - Variable in class org.jpl7.<a href="org/jpl7/Variable.html" title="class in org.jpl7">Variable</a></dt>
<dd>
<div class="block">the name of this Variable (may be changed as of April 2020)</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Variable.html#name--">name()</a></span> - Method in class org.jpl7.<a href="org/jpl7/Variable.html" title="class in org.jpl7">Variable</a></dt>
<dd>
<div class="block">the lexical name of this Variable</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Util.html#namevarsToMap-org.jpl7.Term-">namevarsToMap(Term)</a></span> - Static method in class org.jpl7.<a href="org/jpl7/Util.html" title="class in org.jpl7">Util</a></dt>
<dd>
<div class="block">Converts a (JPL) list of Name=Var pairs (as yielded by atom_to_term/3) to a Map from Prolog variables
(necessarily in term_t holders) to named JPL Variables</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/fli/Prolog.html#new_atom-java.lang.String-">new_atom(String)</a></span> - Static method in class org.jpl7.fli.<a href="org/jpl7/fli/Prolog.html" title="class in org.jpl7.fli">Prolog</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/fli/Prolog.html#new_functor-org.jpl7.fli.atom_t-int-">new_functor(atom_t, int)</a></span> - Static method in class org.jpl7.fli.<a href="org/jpl7/fli/Prolog.html" title="class in org.jpl7.fli">Prolog</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/fli/Prolog.html#new_module-org.jpl7.fli.atom_t-">new_module(atom_t)</a></span> - Static method in class org.jpl7.fli.<a href="org/jpl7/fli/Prolog.html" title="class in org.jpl7.fli">Prolog</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/fli/Prolog.html#new_term_ref--">new_term_ref()</a></span> - Static method in class org.jpl7.fli.<a href="org/jpl7/fli/Prolog.html" title="class in org.jpl7.fli">Prolog</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/fli/Prolog.html#new_term_refs-int-">new_term_refs(int)</a></span> - Static method in class org.jpl7.fli.<a href="org/jpl7/fli/Prolog.html" title="class in org.jpl7.fli">Prolog</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/JPL.html#newJRef-java.lang.Object-">newJRef(Object)</a></span> - Static method in class org.jpl7.<a href="org/jpl7/JPL.html" title="class in org.jpl7">JPL</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Query.html#next--">next()</a></span> - Method in class org.jpl7.<a href="org/jpl7/Query.html" title="class in org.jpl7">Query</a></dt>
<dd>
<div class="block">This method is required by Iterator interface
It is a wrapper for <a href="org/jpl7/Query.html#nextSolution--"><code>Query.nextSolution()</code></a></div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/fli/Prolog.html#next_solution-org.jpl7.fli.qid_t-">next_solution(qid_t)</a></span> - Static method in class org.jpl7.fli.<a href="org/jpl7/fli/Prolog.html" title="class in org.jpl7.fli">Prolog</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Query.html#nextElement--">nextElement()</a></span> - Method in class org.jpl7.<a href="org/jpl7/Query.html" title="class in org.jpl7">Query</a></dt>
<dd>
<div class="block">This method implements part of the java.util.Enumeration interface.</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Query.html#nextSolution--">nextSolution()</a></span> - Method in class org.jpl7.<a href="org/jpl7/Query.html" title="class in org.jpl7">Query</a></dt>
<dd>
<div class="block">This method returns a java.util.Map, which represents a binding from the
names of query variables to terms within the next solution.</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Query.html#nSolutions-long-">nSolutions(long)</a></span> - Method in class org.jpl7.<a href="org/jpl7/Query.html" title="class in org.jpl7">Query</a></dt>
<dd>
<div class="block">calls the Query's goal to exhaustion or until N solutions are found,
whichever is sooner, and returns an array containing (as possibly empty
Maps of variablename-to-term bindings) every found solution (in the order
in which they were found).</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Query.html#nSolutions-org.jpl7.Term-long-">nSolutions(Term, long)</a></span> - Static method in class org.jpl7.<a href="org/jpl7/Query.html" title="class in org.jpl7">Query</a></dt>
<dd>
<div class="block">This static method creates a Query whose goal is the given Term, calls it
to exhaustion or until N solutions are found, whichever is sooner, and
returns an array containing (as possibly empty Maps of
variablename-to-term bindings) every found solution (in the order in
which they were found).</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Query.html#nSolutions-java.lang.String-long-">nSolutions(String, long)</a></span> - Static method in class org.jpl7.<a href="org/jpl7/Query.html" title="class in org.jpl7">Query</a></dt>
<dd>
<div class="block">This static method creates a Query from the given Prolog source text
fragment, calls it to exhaustion or until N solutions are found,
whichever is sooner, and returns an array containing (as possibly empty
Maps of variablename-to-term bindings) every found solution (in the order
in which they were found).</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Query.html#nSolutions-java.lang.String-org.jpl7.Term:A-long-">nSolutions(String, Term[], long)</a></span> - Static method in class org.jpl7.<a href="org/jpl7/Query.html" title="class in org.jpl7">Query</a></dt>
<dd>
<div class="block">If text denotes (in traditional Prolog source syntax) a term containing N
questionmark (?) symbols and there are N accompanying params, this static
method replaces each questionmark symbol by its respective param, calls
the resulting goal to exhaustion or until N solutions are found,
whichever is sooner, and returns an array containing (as possibly empty
Maps of variablename-to-term bindings) every found solution (in the order
in which they were found).</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Rational.html#numerator">numerator</a></span> - Variable in class org.jpl7.<a href="org/jpl7/Rational.html" title="class in org.jpl7">Rational</a></dt>
<dd>
<div class="block">the numerator and denominator in canonical form:
gcd(numerator, denominator = 1 (not reducible)
denominator greater than 1
rat is a String of the form "NrM"</div>
</dd>
</dl>
<a name="I:O">
<!-- -->
</a>
<h2 class="title">O</h2>
<dl>
<dt><span class="memberNameLink"><a href="org/jpl7/JRef.html#object">object</a></span> - Variable in class org.jpl7.<a href="org/jpl7/JRef.html" title="class in org.jpl7">JRef</a></dt>
<dd>
<div class="block">the JRef's value (a non-null, non-String Object)</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/JRef.html#object--">object()</a></span> - Method in class org.jpl7.<a href="org/jpl7/JRef.html" title="class in org.jpl7">JRef</a></dt>
<dd>
<div class="block">Returns the actual object the JREF stands for</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Term.html#object--">object()</a></span> - Method in class org.jpl7.<a href="org/jpl7/Term.html" title="class in org.jpl7">Term</a></dt>
<dd>
<div class="block">The Object which this org.jpl7.JRef refers to, iff this Term is a JRef or just JPL.JNULL.</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/fli/Prolog.html#object_to_tag-java.lang.Object-">object_to_tag(Object)</a></span> - Static method in class org.jpl7.fli.<a href="org/jpl7/fli/Prolog.html" title="class in org.jpl7.fli">Prolog</a></dt>
<dd> </dd>
<dt><a href="org/jpl7/fli/ObjectHolder.html" title="class in org.jpl7.fli"><span class="typeNameLink">ObjectHolder</span></a> - Class in <a href="org/jpl7/fli/package-summary.html">org.jpl7.fli</a></dt>
<dd>
<div class="block">A ObjectHolder is merely a Holder class for an Object reference (or null).</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/fli/ObjectHolder.html#ObjectHolder--">ObjectHolder()</a></span> - Constructor for class org.jpl7.fli.<a href="org/jpl7/fli/ObjectHolder.html" title="class in org.jpl7.fli">ObjectHolder</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Term.html#objectToJRef-java.lang.Object-">objectToJRef(Object)</a></span> - Static method in class org.jpl7.<a href="org/jpl7/Term.html" title="class in org.jpl7">Term</a></dt>
<dd>
<div class="block"><span class="deprecatedLabel">Deprecated.</span>
<div class="block"><span class="deprecationComment">Use <a href="org/jpl7/JPL.html#newJRef-java.lang.Object-"><code>JPL.newJRef(java.lang.Object)</code></a></span></div>
</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Query.html#oneSolution--">oneSolution()</a></span> - Method in class org.jpl7.<a href="org/jpl7/Query.html" title="class in org.jpl7">Query</a></dt>
<dd>
<div class="block">Returns the first solution, if any, as a (possibly empty) Map of
variablename-to-term bindings, else null.</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Query.html#oneSolution-org.jpl7.Term-">oneSolution(Term)</a></span> - Static method in class org.jpl7.<a href="org/jpl7/Query.html" title="class in org.jpl7">Query</a></dt>
<dd>
<div class="block">This static method creates a Query (whose goal is the specified Term) and
calls it at most once, returning the first solution, if there is one, as
a (possibly empty) Map, else null.</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Query.html#oneSolution-java.lang.String-">oneSolution(String)</a></span> - Static method in class org.jpl7.<a href="org/jpl7/Query.html" title="class in org.jpl7">Query</a></dt>
<dd>
<div class="block">This static method creates a Query from the given Prolog source text
fragment, and calls it at most once, returning the first solution, if
there is one, as a (possibly empty) Map, else null.</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Query.html#oneSolution-java.lang.String-org.jpl7.Term:A-">oneSolution(String, Term[])</a></span> - Static method in class org.jpl7.<a href="org/jpl7/Query.html" title="class in org.jpl7">Query</a></dt>
<dd>
<div class="block">If text denotes (in traditional Prolog source syntax) a term containing N
questionmark (?) symbols and there are N params, each questionmark symbol
is replaced by its respective param to provide the goal of this query:
the resulting goal is then called (at most once) and the first solution,
if there is one, is returned as a (possibly empty) Map, else null.</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Query.html#open--">open()</a></span> - Method in class org.jpl7.<a href="org/jpl7/Query.html" title="class in org.jpl7">Query</a></dt>
<dd>
<div class="block">This method returns true if JPL was able to initiate a "call" of this
Query within the Prolog engine.</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/fli/Prolog.html#open_foreign_frame--">open_foreign_frame()</a></span> - Static method in class org.jpl7.fli.<a href="org/jpl7/fli/Prolog.html" title="class in org.jpl7.fli">Prolog</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/fli/Prolog.html#open_query-org.jpl7.fli.module_t-int-org.jpl7.fli.predicate_t-org.jpl7.fli.term_t-">open_query(module_t, int, predicate_t, term_t)</a></span> - Static method in class org.jpl7.fli.<a href="org/jpl7/fli/Prolog.html" title="class in org.jpl7.fli">Prolog</a></dt>
<dd> </dd>
<dt><a href="org/jpl7/package-summary.html">org.jpl7</a> - package org.jpl7</dt>
<dd> </dd>
<dt><a href="org/jpl7/fli/package-summary.html">org.jpl7.fli</a> - package org.jpl7.fli</dt>
<dd> </dd>
</dl>
<a name="I:P">
<!-- -->
</a>
<h2 class="title">P</h2>
<dl>
<dt><a href="org/jpl7/fli/PointerHolder.html" title="class in org.jpl7.fli"><span class="typeNameLink">PointerHolder</span></a> - Class in <a href="org/jpl7/fli/package-summary.html">org.jpl7.fli</a></dt>
<dd>
<div class="block">A PointerHolder is a trivial extension of a LongHolder.</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/fli/PointerHolder.html#PointerHolder--">PointerHolder()</a></span> - Constructor for class org.jpl7.fli.<a href="org/jpl7/fli/PointerHolder.html" title="class in org.jpl7.fli">PointerHolder</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/fli/Prolog.html#predicate-java.lang.String-int-java.lang.String-">predicate(String, int, String)</a></span> - Static method in class org.jpl7.fli.<a href="org/jpl7/fli/Prolog.html" title="class in org.jpl7.fli">Prolog</a></dt>
<dd> </dd>
<dt><a href="org/jpl7/fli/predicate_t.html" title="class in org.jpl7.fli"><span class="typeNameLink">predicate_t</span></a> - Class in <a href="org/jpl7/fli/package-summary.html">org.jpl7.fli</a></dt>
<dd>
<div class="block">A predicate_t is a PointerHolder class whose value is a reference to a Prolog
predicate_t.</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/fli/predicate_t.html#predicate_t--">predicate_t()</a></span> - Constructor for class org.jpl7.fli.<a href="org/jpl7/fli/predicate_t.html" title="class in org.jpl7.fli">predicate_t</a></dt>
<dd> </dd>
<dt><a href="org/jpl7/fli/Prolog.html" title="class in org.jpl7.fli"><span class="typeNameLink">Prolog</span></a> - Class in <a href="org/jpl7/fli/package-summary.html">org.jpl7.fli</a></dt>
<dd>
<div class="block">This class consists only of constants (static finals) and static native
methods.</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/fli/Prolog.html#Prolog--">Prolog()</a></span> - Constructor for class org.jpl7.fli.<a href="org/jpl7/fli/Prolog.html" title="class in org.jpl7.fli">Prolog</a></dt>
<dd> </dd>
<dt><a href="org/jpl7/PrologException.html" title="class in org.jpl7"><span class="typeNameLink">PrologException</span></a> - Exception in <a href="org/jpl7/package-summary.html">org.jpl7</a></dt>
<dd>
<div class="block">PrologException instances wrap Prolog exceptions thrown (either by a Prolog
engine or by user code) in the course of finding a solution to a Query.</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/PrologException.html#PrologException-org.jpl7.Term-">PrologException(Term)</a></span> - Constructor for exception org.jpl7.<a href="org/jpl7/PrologException.html" title="class in org.jpl7">PrologException</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Atom.html#put-java.util.Map-org.jpl7.fli.term_t-">put(Map<String, term_t>, term_t)</a></span> - Method in class org.jpl7.<a href="org/jpl7/Atom.html" title="class in org.jpl7">Atom</a></dt>
<dd>
<div class="block">To put an Atom in a term, we create a sequence of term_t references from the Term.terms_to_term_ts() method, and
then use the Prolog.cons_functor_v() method to create a Prolog compound term.</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Compound.html#put-java.util.Map-org.jpl7.fli.term_t-">put(Map<String, term_t>, term_t)</a></span> - Method in class org.jpl7.<a href="org/jpl7/Compound.html" title="class in org.jpl7">Compound</a></dt>
<dd>
<div class="block">To put a Compound in a term, we create a sequence of term_t references from the Term.terms_to_term_ts() method,
and then use the Prolog.cons_functor_v() method to create a Prolog compound term.</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Dict.html#put-java.util.Map-org.jpl7.fli.term_t-">put(Map<String, term_t>, term_t)</a></span> - Method in class org.jpl7.<a href="org/jpl7/Dict.html" title="class in org.jpl7">Dict</a></dt>
<dd>
<div class="block">To convert an Rational into a Prolog term, we put its value into the term_t.</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Float.html#put-java.util.Map-org.jpl7.fli.term_t-">put(Map<String, term_t>, term_t)</a></span> - Method in class org.jpl7.<a href="org/jpl7/Float.html" title="class in org.jpl7">Float</a></dt>
<dd>
<div class="block">To convert a JPL Float to a Prolog term, we put its value field into the
term_t as a float.</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Integer.html#put-java.util.Map-org.jpl7.fli.term_t-">put(Map<String, term_t>, term_t)</a></span> - Method in class org.jpl7.<a href="org/jpl7/Integer.html" title="class in org.jpl7">Integer</a></dt>
<dd>
<div class="block">To convert an Integer into a Prolog term, we put its value into the term_t.</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/JRef.html#put-java.util.Map-org.jpl7.fli.term_t-">put(Map<String, term_t>, term_t)</a></span> - Method in class org.jpl7.<a href="org/jpl7/JRef.html" title="class in org.jpl7">JRef</a></dt>
<dd>
<div class="block">To convert a JRef to a term, we put its Object field (.ref) into the term_t as a <jref>(0x01DF800) blob.</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Rational.html#put-java.util.Map-org.jpl7.fli.term_t-">put(Map<String, term_t>, term_t)</a></span> - Method in class org.jpl7.<a href="org/jpl7/Rational.html" title="class in org.jpl7">Rational</a></dt>
<dd>
<div class="block">To convert an Rational into a Prolog term, we put its value into the term_t.</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Term.html#put-org.jpl7.fli.term_t-">put(term_t)</a></span> - Method in class org.jpl7.<a href="org/jpl7/Term.html" title="class in org.jpl7">Term</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Term.html#put-java.util.Map-org.jpl7.fli.term_t-">put(Map<String, term_t>, term_t)</a></span> - Method in class org.jpl7.<a href="org/jpl7/Term.html" title="class in org.jpl7">Term</a></dt>
<dd>
<div class="block">Cache the reference to the Prolog term_t here.</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Variable.html#put-java.util.Map-org.jpl7.fli.term_t-">put(Map<String, term_t>, term_t)</a></span> - Method in class org.jpl7.<a href="org/jpl7/Variable.html" title="class in org.jpl7">Variable</a></dt>
<dd>
<div class="block">To put a Variable, we must check whether a (non-anonymous) variable with
the same name has already been put in the Term.</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/fli/Prolog.html#put_atom_chars-org.jpl7.fli.term_t-java.lang.String-">put_atom_chars(term_t, String)</a></span> - Static method in class org.jpl7.fli.<a href="org/jpl7/fli/Prolog.html" title="class in org.jpl7.fli">Prolog</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/fli/Prolog.html#put_float-org.jpl7.fli.term_t-double-">put_float(term_t, double)</a></span> - Static method in class org.jpl7.fli.<a href="org/jpl7/fli/Prolog.html" title="class in org.jpl7.fli">Prolog</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/fli/Prolog.html#put_integer-org.jpl7.fli.term_t-long-">put_integer(term_t, long)</a></span> - Static method in class org.jpl7.fli.<a href="org/jpl7/fli/Prolog.html" title="class in org.jpl7.fli">Prolog</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/fli/Prolog.html#put_integer_big-org.jpl7.fli.term_t-java.lang.String-">put_integer_big(term_t, String)</a></span> - Static method in class org.jpl7.fli.<a href="org/jpl7/fli/Prolog.html" title="class in org.jpl7.fli">Prolog</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/fli/Prolog.html#put_jref-org.jpl7.fli.term_t-java.lang.Object-">put_jref(term_t, Object)</a></span> - Static method in class org.jpl7.fli.<a href="org/jpl7/fli/Prolog.html" title="class in org.jpl7.fli">Prolog</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/fli/Prolog.html#put_nil-org.jpl7.fli.term_t-">put_nil(term_t)</a></span> - Static method in class org.jpl7.fli.<a href="org/jpl7/fli/Prolog.html" title="class in org.jpl7.fli">Prolog</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/fli/Prolog.html#put_rational-org.jpl7.fli.term_t-java.lang.String-">put_rational(term_t, String)</a></span> - Static method in class org.jpl7.fli.<a href="org/jpl7/fli/Prolog.html" title="class in org.jpl7.fli">Prolog</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/fli/Prolog.html#put_term-org.jpl7.fli.term_t-org.jpl7.fli.term_t-">put_term(term_t, term_t)</a></span> - Static method in class org.jpl7.fli.<a href="org/jpl7/fli/Prolog.html" title="class in org.jpl7.fli">Prolog</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/fli/Prolog.html#put_variable-org.jpl7.fli.term_t-">put_variable(term_t)</a></span> - Static method in class org.jpl7.fli.<a href="org/jpl7/fli/Prolog.html" title="class in org.jpl7.fli">Prolog</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Term.html#putParams-org.jpl7.Term:A-">putParams(Term[])</a></span> - Method in class org.jpl7.<a href="org/jpl7/Term.html" title="class in org.jpl7">Term</a></dt>
<dd>
<div class="block">This internal method is public because it needs to be callable via JNI, but it is not part of JPL's public API
and should not be used by applications.</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Term.html#putParams-org.jpl7.Term-">putParams(Term)</a></span> - Method in class org.jpl7.<a href="org/jpl7/Term.html" title="class in org.jpl7">Term</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Term.html#putParams1-org.jpl7.fli.IntHolder-org.jpl7.Term:A-">putParams1(IntHolder, Term[])</a></span> - Method in class org.jpl7.<a href="org/jpl7/Term.html" title="class in org.jpl7">Term</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Term.html#putParams2-org.jpl7.Term:A-org.jpl7.fli.IntHolder-org.jpl7.Term:A-">putParams2(Term[], IntHolder, Term[])</a></span> - Static method in class org.jpl7.<a href="org/jpl7/Term.html" title="class in org.jpl7">Term</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Term.html#putTerm-java.lang.Object-org.jpl7.fli.term_t-">putTerm(Object, term_t)</a></span> - Static method in class org.jpl7.<a href="org/jpl7/Term.html" title="class in org.jpl7">Term</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Term.html#putTerms-java.util.Map-org.jpl7.Term:A-">putTerms(Map<String, term_t>, Term[])</a></span> - Static method in class org.jpl7.<a href="org/jpl7/Term.html" title="class in org.jpl7">Term</a></dt>
<dd>
<div class="block">This static method converts an array of Terms to a *consecutive* sequence of term_t objects.</div>
</dd>
</dl>
<a name="I:Q">
<!-- -->
</a>
<h2 class="title">Q</h2>
<dl>
<dt><span class="memberNameLink"><a href="org/jpl7/fli/Prolog.html#Q_CATCH_EXCEPTION">Q_CATCH_EXCEPTION</a></span> - Static variable in class org.jpl7.fli.<a href="org/jpl7/fli/Prolog.html" title="class in org.jpl7.fli">Prolog</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/fli/Prolog.html#Q_NODEBUG">Q_NODEBUG</a></span> - Static variable in class org.jpl7.fli.<a href="org/jpl7/fli/Prolog.html" title="class in org.jpl7.fli">Prolog</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/fli/Prolog.html#Q_NORMAL">Q_NORMAL</a></span> - Static variable in class org.jpl7.fli.<a href="org/jpl7/fli/Prolog.html" title="class in org.jpl7.fli">Prolog</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/fli/Prolog.html#Q_PASS_EXCEPTION">Q_PASS_EXCEPTION</a></span> - Static variable in class org.jpl7.fli.<a href="org/jpl7/fli/Prolog.html" title="class in org.jpl7.fli">Prolog</a></dt>
<dd> </dd>
<dt><a href="org/jpl7/fli/qid_t.html" title="class in org.jpl7.fli"><span class="typeNameLink">qid_t</span></a> - Class in <a href="org/jpl7/fli/package-summary.html">org.jpl7.fli</a></dt>
<dd>
<div class="block">A qid_t holds a reference to a Prolog qid_t.</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/fli/qid_t.html#qid_t--">qid_t()</a></span> - Constructor for class org.jpl7.fli.<a href="org/jpl7/fli/qid_t.html" title="class in org.jpl7.fli">qid_t</a></dt>
<dd> </dd>
<dt><a href="org/jpl7/Query.html" title="class in org.jpl7"><span class="typeNameLink">Query</span></a> - Class in <a href="org/jpl7/package-summary.html">org.jpl7</a></dt>
<dd>
<div class="block">A Query instance is created by an application in order to query the Prolog
database (or to invoke a built-in predicate).</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Query.html#Query-org.jpl7.Term-">Query(Term)</a></span> - Constructor for class org.jpl7.<a href="org/jpl7/Query.html" title="class in org.jpl7">Query</a></dt>
<dd>
<div class="block">This constructor creates a Query whose goal is the specified Term.</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Query.html#Query-java.lang.String-">Query(String)</a></span> - Constructor for class org.jpl7.<a href="org/jpl7/Query.html" title="class in org.jpl7">Query</a></dt>
<dd>
<div class="block">This constructor builds a Query from the given Prolog source text, "as is".</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Query.html#Query-java.lang.String-org.jpl7.Term:A-">Query(String, Term[])</a></span> - Constructor for class org.jpl7.<a href="org/jpl7/Query.html" title="class in org.jpl7">Query</a></dt>
<dd>
<div class="block">If text denotes an atom, this constructor is shorthand for
new Query(new Compound(name,args)).</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Query.html#Query-java.lang.String-org.jpl7.Term-">Query(String, Term)</a></span> - Constructor for class org.jpl7.<a href="org/jpl7/Query.html" title="class in org.jpl7">Query</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/JPL.html#quotedName-java.lang.String-">quotedName(String)</a></span> - Static method in class org.jpl7.<a href="org/jpl7/JPL.html" title="class in org.jpl7">JPL</a></dt>
<dd>
<div class="block">Returns a quoted (iff necessary) form of the Atom's name, as understood
by Prolog read/1</div>
</dd>
</dl>
<a name="I:R">
<!-- -->
</a>
<h2 class="title">R</h2>
<dl>
<dt><span class="memberNameLink"><a href="org/jpl7/fli/Prolog.html#RATIONAL">RATIONAL</a></span> - Static variable in class org.jpl7.fli.<a href="org/jpl7/fli/Prolog.html" title="class in org.jpl7.fli">Prolog</a></dt>
<dd> </dd>
<dt><a href="org/jpl7/Rational.html" title="class in org.jpl7"><span class="typeNameLink">Rational</span></a> - Class in <a href="org/jpl7/package-summary.html">org.jpl7</a></dt>
<dd>
<div class="block">Rational is a specialised Term representing a Prolog rational value.</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Rational.html#Rational-long-long-">Rational(long, long)</a></span> - Constructor for class org.jpl7.<a href="org/jpl7/Rational.html" title="class in org.jpl7">Rational</a></dt>
<dd>
<div class="block">Creates a rational in canonical form</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Rational.html#Rational-java.lang.String-">Rational(String)</a></span> - Constructor for class org.jpl7.<a href="org/jpl7/Rational.html" title="class in org.jpl7">Rational</a></dt>
<dd>
<div class="block">Creates a rational in canonical form</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/JRef.html#ref--">ref()</a></span> - Method in class org.jpl7.<a href="org/jpl7/JRef.html" title="class in org.jpl7">JRef</a></dt>
<dd>
<div class="block"><span class="deprecatedLabel">Deprecated.</span>
<div class="block"><span class="deprecationComment"><a href="org/jpl7/JRef.html#object--"><code>JRef.object()</code></a></span></div>
</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Term.html#ref--">ref()</a></span> - Method in class org.jpl7.<a href="org/jpl7/Term.html" title="class in org.jpl7">Term</a></dt>
<dd>
<div class="block"><span class="deprecatedLabel">Deprecated.</span>
<div class="block"><span class="deprecationComment">Use <a href="org/jpl7/JRef.html#object--"><code>JRef.object()</code></a></span></div>
</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/fli/Prolog.html#release_pool_engine--">release_pool_engine()</a></span> - Static method in class org.jpl7.fli.<a href="org/jpl7/fli/Prolog.html" title="class in org.jpl7.fli">Prolog</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Query.html#remove--">remove()</a></span> - Method in class org.jpl7.<a href="org/jpl7/Query.html" title="class in org.jpl7">Query</a></dt>
<dd>
<div class="block">This method (required by Iterator interface) is a no-op</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Query.html#reset--">reset()</a></span> - Method in class org.jpl7.<a href="org/jpl7/Query.html" title="class in org.jpl7">Query</a></dt>
<dd>
<div class="block">Reset the query to its start: closed and no solution found so far.</div>
</dd>
</dl>
<a name="I:S">
<!-- -->
</a>
<h2 class="title">S</h2>
<dl>
<dt><span class="memberNameLink"><a href="org/jpl7/fli/Prolog.html#set_default_init_args-java.lang.String:A-">set_default_init_args(String[])</a></span> - Static method in class org.jpl7.fli.<a href="org/jpl7/fli/Prolog.html" title="class in org.jpl7.fli">Prolog</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Compound.html#setArg-int-org.jpl7.Term-">setArg(int, Term)</a></span> - Method in class org.jpl7.<a href="org/jpl7/Compound.html" title="class in org.jpl7">Compound</a></dt>
<dd>
<div class="block">Sets the i-th (from 1) arg of this Compound to the given Term instance.</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/JPL.html#setDefaultInitArgs-java.lang.String:A-">setDefaultInitArgs(String[])</a></span> - Static method in class org.jpl7.<a href="org/jpl7/JPL.html" title="class in org.jpl7">JPL</a></dt>
<dd>
<div class="block">Specifies, in an array of String, the sequence of command-line arguments
that should be used if the Prolog engine is subsequently initialised.</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/JPL.html#setDTMMode-boolean-">setDTMMode(boolean)</a></span> - Static method in class org.jpl7.<a href="org/jpl7/JPL.html" title="class in org.jpl7">JPL</a></dt>
<dd>
<div class="block">Sets the global "dont-tell-me" mode (default value: true).</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Term.html#setName-java.lang.String-">setName(String)</a></span> - Method in class org.jpl7.<a href="org/jpl7/Term.html" title="class in org.jpl7">Term</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Variable.html#setName-java.lang.String-">setName(String)</a></span> - Method in class org.jpl7.<a href="org/jpl7/Variable.html" title="class in org.jpl7">Variable</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/JPL.html#setNativeLibraryDir-java.lang.String-">setNativeLibraryDir(String)</a></span> - Static method in class org.jpl7.<a href="org/jpl7/JPL.html" title="class in org.jpl7">JPL</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/JPL.html#setNativeLibraryName-java.lang.String-">setNativeLibraryName(String)</a></span> - Static method in class org.jpl7.<a href="org/jpl7/JPL.html" title="class in org.jpl7">JPL</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/JPL.html#setNativeLibraryPath-java.lang.String-">setNativeLibraryPath(String)</a></span> - Static method in class org.jpl7.<a href="org/jpl7/JPL.html" title="class in org.jpl7">JPL</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/JPL.html#setTraditional--">setTraditional()</a></span> - Static method in class org.jpl7.<a href="org/jpl7/JPL.html" title="class in org.jpl7">JPL</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/JPL.html#setTraditionalAnyway--">setTraditionalAnyway()</a></span> - Static method in class org.jpl7.<a href="org/jpl7/JPL.html" title="class in org.jpl7">JPL</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/fli/Prolog.html#STRING">STRING</a></span> - Static variable in class org.jpl7.fli.<a href="org/jpl7/fli/Prolog.html" title="class in org.jpl7.fli">Prolog</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Term.html#stringArrayToList-java.lang.String:A-">stringArrayToList(String[])</a></span> - Static method in class org.jpl7.<a href="org/jpl7/Term.html" title="class in org.jpl7">Term</a></dt>
<dd>
<div class="block">Converts an array of String to a corresponding JPL list of atoms</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Util.html#stringArrayToList-java.lang.String:A-">stringArrayToList(String[])</a></span> - Static method in class org.jpl7.<a href="org/jpl7/Util.html" title="class in org.jpl7">Util</a></dt>
<dd>
<div class="block"><span class="deprecatedLabel">Deprecated.</span>
<div class="block"><span class="deprecationComment">Use <a href="org/jpl7/Term.html#stringArrayToList-java.lang.String:A-"><code>Term.stringArrayToList(String[] a)</code></a></span></div>
</div>
</dd>
<dt><a href="org/jpl7/fli/StringHolder.html" title="class in org.jpl7.fli"><span class="typeNameLink">StringHolder</span></a> - Class in <a href="org/jpl7/fli/package-summary.html">org.jpl7.fli</a></dt>
<dd>
<div class="block">A StringHolder is merely a Holder class for a String value.</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/fli/StringHolder.html#StringHolder--">StringHolder()</a></span> - Constructor for class org.jpl7.fli.<a href="org/jpl7/fli/StringHolder.html" title="class in org.jpl7.fli">StringHolder</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Util.html#subsToString-java.util.Map-">subsToString(Map<String, Term>)</a></span> - Static method in class org.jpl7.<a href="org/jpl7/Util.html" title="class in org.jpl7">Util</a></dt>
<dd>
<div class="block">Converts a substitution, in the form of a Map from variable names to Terms, to a String.</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/fli/Prolog.html#succeed">succeed</a></span> - Static variable in class org.jpl7.fli.<a href="org/jpl7/fli/Prolog.html" title="class in org.jpl7.fli">Prolog</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/fli/Prolog.html#SYNTAX_MODERN">SYNTAX_MODERN</a></span> - Static variable in class org.jpl7.fli.<a href="org/jpl7/fli/Prolog.html" title="class in org.jpl7.fli">Prolog</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/fli/Prolog.html#SYNTAX_TRADITIONAL">SYNTAX_TRADITIONAL</a></span> - Static variable in class org.jpl7.fli.<a href="org/jpl7/fli/Prolog.html" title="class in org.jpl7.fli">Prolog</a></dt>
<dd> </dd>
</dl>
<a name="I:T">
<!-- -->
</a>
<h2 class="title">T</h2>
<dl>
<dt><span class="memberNameLink"><a href="org/jpl7/Dict.html#tag">tag</a></span> - Variable in class org.jpl7.<a href="org/jpl7/Dict.html" title="class in org.jpl7">Dict</a></dt>
<dd>
<div class="block">The tag of the dictionary - an Atom or a Variable</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/fli/Prolog.html#tag_to_object-java.lang.String-">tag_to_object(String)</a></span> - Static method in class org.jpl7.fli.<a href="org/jpl7/fli/Prolog.html" title="class in org.jpl7.fli">Prolog</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/PrologException.html#term--">term()</a></span> - Method in exception org.jpl7.<a href="org/jpl7/PrologException.html" title="class in org.jpl7">PrologException</a></dt>
<dd> </dd>
<dt><a href="org/jpl7/Term.html" title="class in org.jpl7"><span class="typeNameLink">Term</span></a> - Class in <a href="org/jpl7/package-summary.html">org.jpl7</a></dt>
<dd>
<div class="block">Term is the abstract base class for Compound, Atom, Variable, Integer and Float, which comprise a Java-oriented
concrete syntax for Prolog.</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Term.html#Term--">Term()</a></span> - Constructor for class org.jpl7.<a href="org/jpl7/Term.html" title="class in org.jpl7">Term</a></dt>
<dd>
<div class="block">This default constructor enables subclasses to define their own default constructors</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Variable.html#term_">term_</a></span> - Variable in class org.jpl7.<a href="org/jpl7/Variable.html" title="class in org.jpl7">Variable</a></dt>
<dd>
<div class="block">defined between Query.open() and Query.get2()</div>
</dd>
<dt><a href="org/jpl7/fli/term_t.html" title="class in org.jpl7.fli"><span class="typeNameLink">term_t</span></a> - Class in <a href="org/jpl7/fli/package-summary.html">org.jpl7.fli</a></dt>
<dd>
<div class="block">A term_t is a simple class which mirrors the term_t type in the Prolog FLI.</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/fli/term_t.html#term_t--">term_t()</a></span> - Constructor for class org.jpl7.fli.<a href="org/jpl7/fli/term_t.html" title="class in org.jpl7.fli">term_t</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/fli/Prolog.html#term_type-org.jpl7.fli.term_t-">term_type(term_t)</a></span> - Static method in class org.jpl7.fli.<a href="org/jpl7/fli/Prolog.html" title="class in org.jpl7.fli">Prolog</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Term.html#termArrayToList-org.jpl7.Term:A-">termArrayToList(Term[])</a></span> - Static method in class org.jpl7.<a href="org/jpl7/Term.html" title="class in org.jpl7">Term</a></dt>
<dd>
<div class="block">Converts an array of Terms to a JPL representation of a Prolog list of terms whose members correspond to the
respective array elements.</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Util.html#termArrayToList-org.jpl7.Term:A-">termArrayToList(Term[])</a></span> - Static method in class org.jpl7.<a href="org/jpl7/Util.html" title="class in org.jpl7">Util</a></dt>
<dd>
<div class="block"><span class="deprecatedLabel">Deprecated.</span>
<div class="block"><span class="deprecationComment">Use <a href="org/jpl7/Term.html#termArrayToList-org.jpl7.Term:A-"><code>Term.termArrayToList(Term[] terms)</code></a></span></div>
</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Term.html#textParamsToTerm-java.lang.String-org.jpl7.Term:A-">textParamsToTerm(String, Term[])</a></span> - Static method in class org.jpl7.<a href="org/jpl7/Term.html" title="class in org.jpl7">Term</a></dt>
<dd>
<div class="block">Converts a Prolog source text to a corresponding JPL Term (in which each Variable has the appropriate name from
the source text), replacing successive occurrences of ? in the text by the corresponding element of Term[]
params.</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Util.html#textParamsToTerm-java.lang.String-org.jpl7.Term:A-">textParamsToTerm(String, Term[])</a></span> - Static method in class org.jpl7.<a href="org/jpl7/Util.html" title="class in org.jpl7">Util</a></dt>
<dd>
<div class="block">Converts a Prolog source text to a corresponding JPL Term (in which each Variable has the appropriate name from
the source text), replacing successive occurrences of ? in the text by the corresponding element of Term[]
params.</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Term.html#textToTerm-java.lang.String-">textToTerm(String)</a></span> - Static method in class org.jpl7.<a href="org/jpl7/Term.html" title="class in org.jpl7">Term</a></dt>
<dd>
<div class="block">Converts a Prolog source text (as a String) to a corresponding JPL Term
(in which each Variable has the appropriate name from the source text).</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Util.html#textToTerm-java.lang.String-">textToTerm(String)</a></span> - Static method in class org.jpl7.<a href="org/jpl7/Util.html" title="class in org.jpl7">Util</a></dt>
<dd>
<div class="block"><span class="deprecatedLabel">Deprecated.</span>
<div class="block"><span class="deprecationComment">Use <a href="org/jpl7/Term.html#textToTerm-java.lang.String-"><code>Term.textToTerm(String text)</code></a></span></div>
</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/fli/Prolog.html#thread_self--">thread_self()</a></span> - Static method in class org.jpl7.fli.<a href="org/jpl7/fli/Prolog.html" title="class in org.jpl7.fli">Prolog</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Atom.html#toString--">toString()</a></span> - Method in class org.jpl7.<a href="org/jpl7/Atom.html" title="class in org.jpl7">Atom</a></dt>
<dd>
<div class="block">an Atom's name is quoted if it is not a simple identifier.</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Compound.html#toString--">toString()</a></span> - Method in class org.jpl7.<a href="org/jpl7/Compound.html" title="class in org.jpl7">Compound</a></dt>
<dd>
<div class="block">a prefix functional representation of a Compound of the form name(arg1,...),
where 'name' is quoted iff necessary
(to be valid Prolog source text) and each argument is represented according to its
toString() method.</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Dict.html#toString--">toString()</a></span> - Method in class org.jpl7.<a href="org/jpl7/Dict.html" title="class in org.jpl7">Dict</a></dt>
<dd>
<div class="block">a Prolog source text representation of this dictionary's value</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/fli/atom_t.html#toString--">toString()</a></span> - Method in class org.jpl7.fli.<a href="org/jpl7/fli/atom_t.html" title="class in org.jpl7.fli">atom_t</a></dt>
<dd>
<div class="block">The String representation of an atom_t is just the atom's name.</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/fli/term_t.html#toString-int-org.jpl7.fli.term_t-">toString(int, term_t)</a></span> - Static method in class org.jpl7.fli.<a href="org/jpl7/fli/term_t.html" title="class in org.jpl7.fli">term_t</a></dt>
<dd>
<div class="block">This static method converts a term_t, which is assumed to contain a
reference to a *consecutive* list of term_t references to a String
representation of a list of terms, in this case, a comma separated list.</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Float.html#toString--">toString()</a></span> - Method in class org.jpl7.<a href="org/jpl7/Float.html" title="class in org.jpl7">Float</a></dt>
<dd>
<div class="block">Returns a Prolog source text representation of this Float</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Integer.html#toString--">toString()</a></span> - Method in class org.jpl7.<a href="org/jpl7/Integer.html" title="class in org.jpl7">Integer</a></dt>
<dd>
<div class="block">a Prolog source text representation of this Integer's value</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/JRef.html#toString--">toString()</a></span> - Method in class org.jpl7.<a href="org/jpl7/JRef.html" title="class in org.jpl7">JRef</a></dt>
<dd>
<div class="block">Returns a Prolog source text representation of this JRef</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Query.html#toString--">toString()</a></span> - Method in class org.jpl7.<a href="org/jpl7/Query.html" title="class in org.jpl7">Query</a></dt>
<dd>
<div class="block">Returns a crude String representation of a Query.</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Rational.html#toString--">toString()</a></span> - Method in class org.jpl7.<a href="org/jpl7/Rational.html" title="class in org.jpl7">Rational</a></dt>
<dd>
<div class="block">a Prolog source text representation of this Rational's value</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Term.html#toString-org.jpl7.Term:A-">toString(Term[])</a></span> - Static method in class org.jpl7.<a href="org/jpl7/Term.html" title="class in org.jpl7">Term</a></dt>
<dd>
<div class="block">Converts a list of Terms to a String.</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Util.html#toString-java.util.Map-">toString(Map<String, Term>)</a></span> - Static method in class org.jpl7.<a href="org/jpl7/Util.html" title="class in org.jpl7">Util</a></dt>
<dd>
<div class="block"><span class="deprecatedLabel">Deprecated.</span>
<div class="block"><span class="deprecationComment">Use <a href="org/jpl7/Util.html#subsToString-java.util.Map-"><code>Util.subsToString(Map)</code></a></span></div>
</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Variable.html#toString--">toString()</a></span> - Method in class org.jpl7.<a href="org/jpl7/Variable.html" title="class in org.jpl7">Variable</a></dt>
<dd>
<div class="block">Returns a Prolog source text representation of this Variable</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Term.html#toTermArray--">toTermArray()</a></span> - Method in class org.jpl7.<a href="org/jpl7/Term.html" title="class in org.jpl7">Term</a></dt>
<dd>
<div class="block"><span class="deprecatedLabel">Deprecated.</span>
<div class="block"><span class="deprecationComment">Use <a href="org/jpl7/Term.html#listToTermArray--"><code>Term.listToTermArray()</code></a></span></div>
</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Atom.html#type">type</a></span> - Variable in class org.jpl7.<a href="org/jpl7/Atom.html" title="class in org.jpl7">Atom</a></dt>
<dd>
<div class="block">the type of this Atom (e.g.</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Atom.html#type--">type()</a></span> - Method in class org.jpl7.<a href="org/jpl7/Atom.html" title="class in org.jpl7">Atom</a></dt>
<dd>
<div class="block">returns the type of this term, as "Prolog.ATOM"</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Compound.html#type--">type()</a></span> - Method in class org.jpl7.<a href="org/jpl7/Compound.html" title="class in org.jpl7">Compound</a></dt>
<dd>
<div class="block">the type of this term, as jpl.fli.Prolog.COMPOUND</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Dict.html#type--">type()</a></span> - Method in class org.jpl7.<a href="org/jpl7/Dict.html" title="class in org.jpl7">Dict</a></dt>
<dd>
<div class="block">the type of this term, as "Prolog.DICT"</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Float.html#type--">type()</a></span> - Method in class org.jpl7.<a href="org/jpl7/Float.html" title="class in org.jpl7">Float</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Integer.html#type--">type()</a></span> - Method in class org.jpl7.<a href="org/jpl7/Integer.html" title="class in org.jpl7">Integer</a></dt>
<dd>
<div class="block">the type of this term, as "Prolog.INTEGER"</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/JRef.html#type--">type()</a></span> - Method in class org.jpl7.<a href="org/jpl7/JRef.html" title="class in org.jpl7">JRef</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Rational.html#type--">type()</a></span> - Method in class org.jpl7.<a href="org/jpl7/Rational.html" title="class in org.jpl7">Rational</a></dt>
<dd>
<div class="block">the type of this term, as "Prolog.RATIONAL"</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Term.html#type--">type()</a></span> - Method in class org.jpl7.<a href="org/jpl7/Term.html" title="class in org.jpl7">Term</a></dt>
<dd>
<div class="block">returns the type of this term, as one of org.jpl7.fli.Prolog.COMPOUND, .ATOM, .VARIABLE, .INTEGER, .FLOAT etc</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Variable.html#type--">type()</a></span> - Method in class org.jpl7.<a href="org/jpl7/Variable.html" title="class in org.jpl7">Variable</a></dt>
<dd>
<div class="block">returns the type of this subclass of Term, i.e.</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Atom.html#typeName--">typeName()</a></span> - Method in class org.jpl7.<a href="org/jpl7/Atom.html" title="class in org.jpl7">Atom</a></dt>
<dd>
<div class="block">returns the name of the type of this term, as "Atom"</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Compound.html#typeName--">typeName()</a></span> - Method in class org.jpl7.<a href="org/jpl7/Compound.html" title="class in org.jpl7">Compound</a></dt>
<dd>
<div class="block">the name of the type of this term, as "Compound"</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Dict.html#typeName--">typeName()</a></span> - Method in class org.jpl7.<a href="org/jpl7/Dict.html" title="class in org.jpl7">Dict</a></dt>
<dd>
<div class="block">the name of the type of this term, as "Rational"</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Float.html#typeName--">typeName()</a></span> - Method in class org.jpl7.<a href="org/jpl7/Float.html" title="class in org.jpl7">Float</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Integer.html#typeName--">typeName()</a></span> - Method in class org.jpl7.<a href="org/jpl7/Integer.html" title="class in org.jpl7">Integer</a></dt>
<dd>
<div class="block">the name of the type of this term, as "Integer"</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/JRef.html#typeName--">typeName()</a></span> - Method in class org.jpl7.<a href="org/jpl7/JRef.html" title="class in org.jpl7">JRef</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Rational.html#typeName--">typeName()</a></span> - Method in class org.jpl7.<a href="org/jpl7/Rational.html" title="class in org.jpl7">Rational</a></dt>
<dd>
<div class="block">the name of the type of this term, as "Rational"</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Term.html#typeName--">typeName()</a></span> - Method in class org.jpl7.<a href="org/jpl7/Term.html" title="class in org.jpl7">Term</a></dt>
<dd>
<div class="block">returns the name of the type of this term, as one of "Compound", "Atom", "Variable", "Integer", "Float" or "JRef"</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Variable.html#typeName--">typeName()</a></span> - Method in class org.jpl7.<a href="org/jpl7/Variable.html" title="class in org.jpl7">Variable</a></dt>
<dd>
<div class="block">returns the typeName of this subclass of Term, i.e.</div>
</dd>
</dl>
<a name="I:U">
<!-- -->
</a>
<h2 class="title">U</h2>
<dl>
<dt><span class="memberNameLink"><a href="org/jpl7/fli/term_t.html#UNASSIGNED">UNASSIGNED</a></span> - Static variable in class org.jpl7.fli.<a href="org/jpl7/fli/term_t.html" title="class in org.jpl7.fli">term_t</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/fli/Prolog.html#unregister_atom-org.jpl7.fli.atom_t-">unregister_atom(atom_t)</a></span> - Static method in class org.jpl7.fli.<a href="org/jpl7/fli/Prolog.html" title="class in org.jpl7.fli">Prolog</a></dt>
<dd> </dd>
<dt><a href="org/jpl7/Util.html" title="class in org.jpl7"><span class="typeNameLink">Util</span></a> - Class in <a href="org/jpl7/package-summary.html">org.jpl7</a></dt>
<dd>
<div class="block">This class provides a bunch of static utility methods to support JPL's Java API.</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Util.html#Util--">Util()</a></span> - Constructor for class org.jpl7.<a href="org/jpl7/Util.html" title="class in org.jpl7">Util</a></dt>
<dd> </dd>
</dl>
<a name="I:V">
<!-- -->
</a>
<h2 class="title">V</h2>
<dl>
<dt><span class="memberNameLink"><a href="org/jpl7/fli/BooleanHolder.html#value">value</a></span> - Variable in class org.jpl7.fli.<a href="org/jpl7/fli/BooleanHolder.html" title="class in org.jpl7.fli">BooleanHolder</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/fli/DoubleHolder.html#value">value</a></span> - Variable in class org.jpl7.fli.<a href="org/jpl7/fli/DoubleHolder.html" title="class in org.jpl7.fli">DoubleHolder</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/fli/Int64Holder.html#value">value</a></span> - Variable in class org.jpl7.fli.<a href="org/jpl7/fli/Int64Holder.html" title="class in org.jpl7.fli">Int64Holder</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/fli/IntHolder.html#value">value</a></span> - Variable in class org.jpl7.fli.<a href="org/jpl7/fli/IntHolder.html" title="class in org.jpl7.fli">IntHolder</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/fli/LongHolder.html#value">value</a></span> - Variable in class org.jpl7.fli.<a href="org/jpl7/fli/LongHolder.html" title="class in org.jpl7.fli">LongHolder</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/fli/ObjectHolder.html#value">value</a></span> - Variable in class org.jpl7.fli.<a href="org/jpl7/fli/ObjectHolder.html" title="class in org.jpl7.fli">ObjectHolder</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/fli/StringHolder.html#value">value</a></span> - Variable in class org.jpl7.fli.<a href="org/jpl7/fli/StringHolder.html" title="class in org.jpl7.fli">StringHolder</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Float.html#value">value</a></span> - Variable in class org.jpl7.<a href="org/jpl7/Float.html" title="class in org.jpl7">Float</a></dt>
<dd>
<div class="block">This Float's immutable (double) value</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Integer.html#value">value</a></span> - Variable in class org.jpl7.<a href="org/jpl7/Integer.html" title="class in org.jpl7">Integer</a></dt>
<dd>
<div class="block">the Integer's immutable long value, iff small enough</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/fli/Prolog.html#VARIABLE">VARIABLE</a></span> - Static variable in class org.jpl7.fli.<a href="org/jpl7/fli/Prolog.html" title="class in org.jpl7.fli">Prolog</a></dt>
<dd> </dd>
<dt><a href="org/jpl7/Variable.html" title="class in org.jpl7"><span class="typeNameLink">Variable</span></a> - Class in <a href="org/jpl7/package-summary.html">org.jpl7</a></dt>
<dd>
<div class="block">This class supports Java representations of Prolog variables.</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Variable.html#Variable--">Variable()</a></span> - Constructor for class org.jpl7.<a href="org/jpl7/Variable.html" title="class in org.jpl7">Variable</a></dt>
<dd>
<div class="block">Create a new don't tell Variable with new sequential name of the form "_261".</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/Variable.html#Variable-java.lang.String-">Variable(String)</a></span> - Constructor for class org.jpl7.<a href="org/jpl7/Variable.html" title="class in org.jpl7">Variable</a></dt>
<dd>
<div class="block">Create a new Variable with 'name' (which must not be null or ""), and may
one day be constrained to comply with traditional Prolog syntax.</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/JPL.html#version--">version()</a></span> - Static method in class org.jpl7.<a href="org/jpl7/JPL.html" title="class in org.jpl7">JPL</a></dt>
<dd>
<div class="block">Returns (as a Version) an identification of this version of JPL.</div>
</dd>
<dt><span class="memberNameLink"><a href="org/jpl7/JPL.html#version_string--">version_string()</a></span> - Static method in class org.jpl7.<a href="org/jpl7/JPL.html" title="class in org.jpl7">JPL</a></dt>
<dd>
<div class="block">Returns a String (eg "3.0.0-alpha") identifying this version of JPL.</div>
</dd>
</dl>
<a href="#I:A">A</a> <a href="#I:B">B</a> <a href="#I:C">C</a> <a href="#I:D">D</a> <a href="#I:E">E</a> <a href="#I:F">F</a> <a href="#I:G">G</a> <a href="#I:H">H</a> <a href="#I:I">I</a> <a href="#I:J">J</a> <a href="#I:L">L</a> <a href="#I:M">M</a> <a href="#I:N">N</a> <a href="#I:O">O</a> <a href="#I:P">P</a> <a href="#I:Q">Q</a> <a href="#I:R">R</a> <a href="#I:S">S</a> <a href="#I:T">T</a> <a href="#I:U">U</a> <a href="#I:V">V</a> </div>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="overview-summary.html">Overview</a></li>
<li>Package</li>
<li>Class</li>
<li><a href="overview-tree.html">Tree</a></li>
<li><a href="deprecated-list.html">Deprecated</a></li>
<li class="navBarCell1Rev">Index</li>
<li><a href="help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="index.html?index-all.html" target="_top">Frames</a></li>
<li><a href="index-all.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
</body>
</html>
|