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
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!--NewPage-->
<HTML>
<HEAD>
<!-- Generated by javadoc (build 1.4.2_04) on Sun Jun 06 11:28:15 CEST 2004 -->
<TITLE>
Index (marc4j)
</TITLE>
<LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">
<SCRIPT type="text/javascript">
function windowTitle()
{
parent.document.title="Index (marc4j)";
}
</SCRIPT>
</HEAD>
<BODY BGCOLOR="white" onload="windowTitle();">
<!-- ========= START OF TOP NAVBAR ======= -->
<A NAME="navbar_top"><!-- --></A>
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_top_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Package</FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Use</FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="overview-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Index</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="index.html" target="_top"><B>FRAMES</B></A>
<A HREF="index-all.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_top"></A>
<!-- ========= END OF TOP NAVBAR ========= -->
<A HREF="#_A_">A</A> <A HREF="#_B_">B</A> <A HREF="#_C_">C</A> <A HREF="#_D_">D</A> <A HREF="#_E_">E</A> <A HREF="#_F_">F</A> <A HREF="#_G_">G</A> <A HREF="#_H_">H</A> <A HREF="#_I_">I</A> <A HREF="#_L_">L</A> <A HREF="#_M_">M</A> <A HREF="#_O_">O</A> <A HREF="#_P_">P</A> <A HREF="#_R_">R</A> <A HREF="#_S_">S</A> <A HREF="#_T_">T</A> <A HREF="#_U_">U</A> <A HREF="#_V_">V</A> <A HREF="#_W_">W</A> <A HREF="#_X_">X</A> <HR>
<A NAME="_A_"><!-- --></A><H2>
<B>A</B></H2>
<DL>
<DT><A HREF="org/marc4j/util/AnselToUnicode.html" title="class in org.marc4j.util"><B>AnselToUnicode</B></A> - class org.marc4j.util.<A HREF="org/marc4j/util/AnselToUnicode.html" title="class in org.marc4j.util">AnselToUnicode</A>.<DD>A utility to convert MARC-8 data to non-precomposed UCS/Unicode.<DT><A HREF="org/marc4j/util/AnselToUnicode.html#AnselToUnicode()"><B>AnselToUnicode()</B></A> -
Constructor for class org.marc4j.util.<A HREF="org/marc4j/util/AnselToUnicode.html" title="class in org.marc4j.util">AnselToUnicode</A>
<DD>
<DT><A HREF="org/marc4j/marc/Collection.html#add(org.marc4j.marc.Record)"><B>add(Record)</B></A> -
Method in class org.marc4j.marc.<A HREF="org/marc4j/marc/Collection.html" title="class in org.marc4j.marc">Collection</A>
<DD>
<DT><A HREF="org/marc4j/marc/DataField.html#add(org.marc4j.marc.Subfield)"><B>add(Subfield)</B></A> -
Method in class org.marc4j.marc.<A HREF="org/marc4j/marc/DataField.html" title="class in org.marc4j.marc">DataField</A>
<DD>Adds a new <code>subfield</code> instance to
the collection of data elements.
<DT><A HREF="org/marc4j/marc/Directory.html#add(java.lang.String, int)"><B>add(String, int)</B></A> -
Method in class org.marc4j.marc.<A HREF="org/marc4j/marc/Directory.html" title="class in org.marc4j.marc">Directory</A>
<DD>Adds a new entry to the directory.
<DT><A HREF="org/marc4j/marc/Record.html#add(org.marc4j.marc.Leader)"><B>add(Leader)</B></A> -
Method in class org.marc4j.marc.<A HREF="org/marc4j/marc/Record.html" title="class in org.marc4j.marc">Record</A>
<DD>Registers the leader.
<DT><A HREF="org/marc4j/marc/Record.html#add(org.marc4j.marc.ControlField)"><B>add(ControlField)</B></A> -
Method in class org.marc4j.marc.<A HREF="org/marc4j/marc/Record.html" title="class in org.marc4j.marc">Record</A>
<DD>Adds a new <A HREF="org/marc4j/marc/ControlField.html" title="class in org.marc4j.marc"><CODE>ControlField</CODE></A> instance to
the collection of variable fields.
<DT><A HREF="org/marc4j/marc/Record.html#add(org.marc4j.marc.DataField)"><B>add(DataField)</B></A> -
Method in class org.marc4j.marc.<A HREF="org/marc4j/marc/Record.html" title="class in org.marc4j.marc">Record</A>
<DD>Adds a new <A HREF="org/marc4j/marc/DataField.html" title="class in org.marc4j.marc"><CODE>DataField</CODE></A> instance to
the collection of variable fields.
</DL>
<HR>
<A NAME="_B_"><!-- --></A><H2>
<B>B</B></H2>
<DL>
<DT><A HREF="org/marc4j/marc/MarcConstants.html#BLANK"><B>BLANK</B></A> -
Static variable in class org.marc4j.marc.<A HREF="org/marc4j/marc/MarcConstants.html" title="class in org.marc4j.marc">MarcConstants</A>
<DD>BLANK
</DL>
<HR>
<A NAME="_C_"><!-- --></A><H2>
<B>C</B></H2>
<DL>
<DT><A HREF="org/marc4j/util/CharacterConverter.html" title="interface in org.marc4j.util"><B>CharacterConverter</B></A> - interface org.marc4j.util.<A HREF="org/marc4j/util/CharacterConverter.html" title="interface in org.marc4j.util">CharacterConverter</A>.<DD>Defines methods for character conversions. <DT><A HREF="org/marc4j/util/CharacterConverterLoader.html" title="class in org.marc4j.util"><B>CharacterConverterLoader</B></A> - class org.marc4j.util.<A HREF="org/marc4j/util/CharacterConverterLoader.html" title="class in org.marc4j.util">CharacterConverterLoader</A>.<DD>Loads a character converter using a system property.<DT><A HREF="org/marc4j/util/CharacterConverterLoaderException.html" title="class in org.marc4j.util"><B>CharacterConverterLoaderException</B></A> - exception org.marc4j.util.<A HREF="org/marc4j/util/CharacterConverterLoaderException.html" title="class in org.marc4j.util">CharacterConverterLoaderException</A>.<DD>A <code>CharacterConverterLoaderException</code> is thrown
when an error occurs while loading a character conversion class.<DT><A HREF="org/marc4j/util/CharacterConverterLoaderException.html#CharacterConverterLoaderException()"><B>CharacterConverterLoaderException()</B></A> -
Constructor for class org.marc4j.util.<A HREF="org/marc4j/util/CharacterConverterLoaderException.html" title="class in org.marc4j.util">CharacterConverterLoaderException</A>
<DD>Creates a new <code>CharacterConverterLoaderException</code>.
<DT><A HREF="org/marc4j/util/CharacterConverterLoaderException.html#CharacterConverterLoaderException(java.lang.String)"><B>CharacterConverterLoaderException(String)</B></A> -
Constructor for class org.marc4j.util.<A HREF="org/marc4j/util/CharacterConverterLoaderException.html" title="class in org.marc4j.util">CharacterConverterLoaderException</A>
<DD>Creates a new <code>CharacterConverterLoaderException</code>
with the specified message.
<DT><A HREF="org/marc4j/util/CharacterConverterLoaderException.html#CharacterConverterLoaderException(java.lang.String, java.lang.Throwable)"><B>CharacterConverterLoaderException(String, Throwable)</B></A> -
Constructor for class org.marc4j.util.<A HREF="org/marc4j/util/CharacterConverterLoaderException.html" title="class in org.marc4j.util">CharacterConverterLoaderException</A>
<DD>Creates a new <code>CharacterConverterLoaderException</code> with the
specified message and an underlying root cause.
<DT><A HREF="org/marc4j/util/CodeTable.html" title="class in org.marc4j.util"><B>CodeTable</B></A> - class org.marc4j.util.<A HREF="org/marc4j/util/CodeTable.html" title="class in org.marc4j.util">CodeTable</A>.<DD><code>CodeTable</code> defines a data structure to facilitate <code>AnselToUnicode</code> character conversion. <DT><A HREF="org/marc4j/util/CodeTable.html#CodeTable(java.io.InputStream)"><B>CodeTable(InputStream)</B></A> -
Constructor for class org.marc4j.util.<A HREF="org/marc4j/util/CodeTable.html" title="class in org.marc4j.util">CodeTable</A>
<DD>
<DT><A HREF="org/marc4j/util/CodeTable.html#CodeTable(java.lang.String)"><B>CodeTable(String)</B></A> -
Constructor for class org.marc4j.util.<A HREF="org/marc4j/util/CodeTable.html" title="class in org.marc4j.util">CodeTable</A>
<DD>
<DT><A HREF="org/marc4j/util/CodeTable.html#CodeTable(java.net.URI)"><B>CodeTable(URI)</B></A> -
Constructor for class org.marc4j.util.<A HREF="org/marc4j/util/CodeTable.html" title="class in org.marc4j.util">CodeTable</A>
<DD>
<DT><A HREF="org/marc4j/util/CodeTableHandler.html" title="class in org.marc4j.util"><B>CodeTableHandler</B></A> - class org.marc4j.util.<A HREF="org/marc4j/util/CodeTableHandler.html" title="class in org.marc4j.util">CodeTableHandler</A>.<DD><code>CodeTableHandler</code> is a SAX2 <code>ContentHandler</code>
that builds a data structure to facilitate AnselToUnicode character conversion.<DT><A HREF="org/marc4j/util/CodeTableHandler.html#CodeTableHandler()"><B>CodeTableHandler()</B></A> -
Constructor for class org.marc4j.util.<A HREF="org/marc4j/util/CodeTableHandler.html" title="class in org.marc4j.util">CodeTableHandler</A>
<DD>
<DT><A HREF="org/marc4j/util/CodeTableTracker.html" title="class in org.marc4j.util"><B>CodeTableTracker</B></A> - class org.marc4j.util.<A HREF="org/marc4j/util/CodeTableTracker.html" title="class in org.marc4j.util">CodeTableTracker</A>.<DD>A utility to convert UCS/Unicode data to MARC-8.<DT><A HREF="org/marc4j/util/CodeTableTracker.html#CodeTableTracker()"><B>CodeTableTracker()</B></A> -
Constructor for class org.marc4j.util.<A HREF="org/marc4j/util/CodeTableTracker.html" title="class in org.marc4j.util">CodeTableTracker</A>
<DD>
<DT><A HREF="org/marc4j/marc/Collection.html" title="class in org.marc4j.marc"><B>Collection</B></A> - class org.marc4j.marc.<A HREF="org/marc4j/marc/Collection.html" title="class in org.marc4j.marc">Collection</A>.<DD><code>Collection</code> defines behaviour for a collection of
<code>Record</code> objects. <DT><A HREF="org/marc4j/marc/Collection.html#Collection()"><B>Collection()</B></A> -
Constructor for class org.marc4j.marc.<A HREF="org/marc4j/marc/Collection.html" title="class in org.marc4j.marc">Collection</A>
<DD>
<DT><A HREF="org/marc4j/marc/ControlField.html" title="class in org.marc4j.marc"><B>ControlField</B></A> - class org.marc4j.marc.<A HREF="org/marc4j/marc/ControlField.html" title="class in org.marc4j.marc">ControlField</A>.<DD><code>ControlField</code> defines behaviour for a control
field (tag 001-009). <DT><A HREF="org/marc4j/marc/ControlField.html#ControlField()"><B>ControlField()</B></A> -
Constructor for class org.marc4j.marc.<A HREF="org/marc4j/marc/ControlField.html" title="class in org.marc4j.marc">ControlField</A>
<DD>Default constructor.
<DT><A HREF="org/marc4j/marc/ControlField.html#ControlField(java.lang.String, char[])"><B>ControlField(String, char[])</B></A> -
Constructor for class org.marc4j.marc.<A HREF="org/marc4j/marc/ControlField.html" title="class in org.marc4j.marc">ControlField</A>
<DD>Creates a new control field instance and registers the tag
and the control field data.
<DT><A HREF="org/marc4j/marc/ControlField.html#ControlField(java.lang.String, java.lang.String)"><B>ControlField(String, String)</B></A> -
Constructor for class org.marc4j.marc.<A HREF="org/marc4j/marc/ControlField.html" title="class in org.marc4j.marc">ControlField</A>
<DD>Creates a new control field instance and registers the tag
and the control field data.
<DT><A HREF="org/marc4j/marcxml/Converter.html" title="class in org.marc4j.marcxml"><B>Converter</B></A> - class org.marc4j.marcxml.<A HREF="org/marc4j/marcxml/Converter.html" title="class in org.marc4j.marcxml">Converter</A>.<DD><code>Converter</code> can be used to apply a conversion
or transformation from a source, populating a result. <DT><A HREF="org/marc4j/marcxml/Converter.html#Converter()"><B>Converter()</B></A> -
Constructor for class org.marc4j.marcxml.<A HREF="org/marc4j/marcxml/Converter.html" title="class in org.marc4j.marcxml">Converter</A>
<DD>Default constructor
<DT><A HREF="org/marc4j/marcxml/MarcXmlHandler.html#characters(char[], int, int)"><B>characters(char[], int, int)</B></A> -
Method in class org.marc4j.marcxml.<A HREF="org/marc4j/marcxml/MarcXmlHandler.html" title="class in org.marc4j.marcxml">MarcXmlHandler</A>
<DD>
<DT><A HREF="org/marc4j/util/CodeTableHandler.html#characters(char[], int, int)"><B>characters(char[], int, int)</B></A> -
Method in class org.marc4j.util.<A HREF="org/marc4j/util/CodeTableHandler.html" title="class in org.marc4j.util">CodeTableHandler</A>
<DD>
<DT><A HREF="org/marc4j/util/ReverseCodeTableHandler.html#characters(char[], int, int)"><B>characters(char[], int, int)</B></A> -
Method in class org.marc4j.util.<A HREF="org/marc4j/util/ReverseCodeTableHandler.html" title="class in org.marc4j.util">ReverseCodeTableHandler</A>
<DD>
<DT><A HREF="org/marc4j/util/ReverseCodeTable.html#charset"><B>charset</B></A> -
Static variable in class org.marc4j.util.<A HREF="org/marc4j/util/ReverseCodeTable.html" title="class in org.marc4j.util">ReverseCodeTable</A>
<DD>
<DT><A HREF="org/marc4j/util/CodeTable.html#charsets"><B>charsets</B></A> -
Static variable in class org.marc4j.util.<A HREF="org/marc4j/util/CodeTable.html" title="class in org.marc4j.util">CodeTable</A>
<DD>
<DT><A HREF="org/marc4j/marc/Verifier.html#checkDataElement(char[])"><B>checkDataElement(char[])</B></A> -
Static method in class org.marc4j.marc.<A HREF="org/marc4j/marc/Verifier.html" title="class in org.marc4j.marc">Verifier</A>
<DD>Checks if the data element does not contain control charecters.
<DT><A HREF="org/marc4j/marc/Verifier.html#checkDataElement(char)"><B>checkDataElement(char)</B></A> -
Static method in class org.marc4j.marc.<A HREF="org/marc4j/marc/Verifier.html" title="class in org.marc4j.marc">Verifier</A>
<DD>Checks if the data element does not contain control charecters.
<DT><A HREF="org/marc4j/marc/Verifier.html#checkTag(java.lang.String)"><B>checkTag(String)</B></A> -
Static method in class org.marc4j.marc.<A HREF="org/marc4j/marc/Verifier.html" title="class in org.marc4j.marc">Verifier</A>
<DD>Checks if the tag is a valid tag name.
<DT><A HREF="org/marc4j/marcxml/Converter.html#clearCache()"><B>clearCache()</B></A> -
Method in class org.marc4j.marcxml.<A HREF="org/marc4j/marcxml/Converter.html" title="class in org.marc4j.marcxml">Converter</A>
<DD>Clears the <code>Templates</code> cache.
<DT><A HREF="org/marc4j/util/ReverseCodeTable.html#codeTableHash(java.lang.Character)"><B>codeTableHash(Character)</B></A> -
Static method in class org.marc4j.util.<A HREF="org/marc4j/util/ReverseCodeTable.html" title="class in org.marc4j.util">ReverseCodeTable</A>
<DD>
<DT><A HREF="org/marc4j/util/CodeTable.html#combining"><B>combining</B></A> -
Static variable in class org.marc4j.util.<A HREF="org/marc4j/util/CodeTable.html" title="class in org.marc4j.util">CodeTable</A>
<DD>
<DT><A HREF="org/marc4j/util/ReverseCodeTable.html#combining"><B>combining</B></A> -
Static variable in class org.marc4j.util.<A HREF="org/marc4j/util/ReverseCodeTable.html" title="class in org.marc4j.util">ReverseCodeTable</A>
<DD>
<DT><A HREF="org/marc4j/marcxml/ExtendedFilter.html#comment(char[], int, int)"><B>comment(char[], int, int)</B></A> -
Method in class org.marc4j.marcxml.<A HREF="org/marc4j/marcxml/ExtendedFilter.html" title="class in org.marc4j.marcxml">ExtendedFilter</A>
<DD>
<DT><A HREF="org/marc4j/MarcHandler.html#controlField(java.lang.String, char[])"><B>controlField(String, char[])</B></A> -
Method in interface org.marc4j.<A HREF="org/marc4j/MarcHandler.html" title="interface in org.marc4j">MarcHandler</A>
<DD>Receives notification of a control field.
<DT><A HREF="org/marc4j/helpers/DefaultHandler.html#controlField(java.lang.String, char[])"><B>controlField(String, char[])</B></A> -
Method in class org.marc4j.helpers.<A HREF="org/marc4j/helpers/DefaultHandler.html" title="class in org.marc4j.helpers">DefaultHandler</A>
<DD>
<DT><A HREF="org/marc4j/helpers/RecordBuilder.html#controlField(java.lang.String, char[])"><B>controlField(String, char[])</B></A> -
Method in class org.marc4j.helpers.<A HREF="org/marc4j/helpers/RecordBuilder.html" title="class in org.marc4j.helpers">RecordBuilder</A>
<DD>Adds a control field to the record object.
<DT><A HREF="org/marc4j/marcxml/MarcXmlFilter.html#controlField(java.lang.String, char[])"><B>controlField(String, char[])</B></A> -
Method in class org.marc4j.marcxml.<A HREF="org/marc4j/marcxml/MarcXmlFilter.html" title="class in org.marc4j.marcxml">MarcXmlFilter</A>
<DD><B>Deprecated.</B> Reports a control field node (001-009).
<DT><A HREF="org/marc4j/marcxml/MarcXmlReader.html#controlField(java.lang.String, char[])"><B>controlField(String, char[])</B></A> -
Method in class org.marc4j.marcxml.<A HREF="org/marc4j/marcxml/MarcXmlReader.html" title="class in org.marc4j.marcxml">MarcXmlReader</A>
<DD>Reports a control field node (001-009).
<DT><A HREF="org/marc4j/util/MarcWriter.html#controlField(java.lang.String, char[])"><B>controlField(String, char[])</B></A> -
Method in class org.marc4j.util.<A HREF="org/marc4j/util/MarcWriter.html" title="class in org.marc4j.util">MarcWriter</A>
<DD>
<DT><A HREF="org/marc4j/util/TaggedWriter.html#controlField(java.lang.String, char[])"><B>controlField(String, char[])</B></A> -
Method in class org.marc4j.util.<A HREF="org/marc4j/util/TaggedWriter.html" title="class in org.marc4j.util">TaggedWriter</A>
<DD>
<DT><A HREF="org/marc4j/marcxml/Converter.html#convert(javax.xml.transform.Source, javax.xml.transform.Result)"><B>convert(Source, Result)</B></A> -
Method in class org.marc4j.marcxml.<A HREF="org/marc4j/marcxml/Converter.html" title="class in org.marc4j.marcxml">Converter</A>
<DD>Converts a <code>Source</code> into a <code>Result</code>.
<DT><A HREF="org/marc4j/marcxml/Converter.html#convert(javax.xml.transform.Source, javax.xml.transform.Source, javax.xml.transform.Result)"><B>convert(Source, Source, Result)</B></A> -
Method in class org.marc4j.marcxml.<A HREF="org/marc4j/marcxml/Converter.html" title="class in org.marc4j.marcxml">Converter</A>
<DD>Converts and transforms or transforms and converts a <code>Source</code>
into a <code>Result</code>.
<DT><A HREF="org/marc4j/util/AnselToUnicode.html#convert(java.lang.String)"><B>convert(String)</B></A> -
Method in class org.marc4j.util.<A HREF="org/marc4j/util/AnselToUnicode.html" title="class in org.marc4j.util">AnselToUnicode</A>
<DD>Converts MARC-8 data to UCS/Unicode.
<DT><A HREF="org/marc4j/util/AnselToUnicode.html#convert(char[])"><B>convert(char[])</B></A> -
Method in class org.marc4j.util.<A HREF="org/marc4j/util/AnselToUnicode.html" title="class in org.marc4j.util">AnselToUnicode</A>
<DD>Converts MARC-8 data to UCS/Unicode.
<DT><A HREF="org/marc4j/util/CharacterConverter.html#convert(java.lang.String)"><B>convert(String)</B></A> -
Method in interface org.marc4j.util.<A HREF="org/marc4j/util/CharacterConverter.html" title="interface in org.marc4j.util">CharacterConverter</A>
<DD>
<DT><A HREF="org/marc4j/util/CharacterConverter.html#convert(char[])"><B>convert(char[])</B></A> -
Method in interface org.marc4j.util.<A HREF="org/marc4j/util/CharacterConverter.html" title="interface in org.marc4j.util">CharacterConverter</A>
<DD>
<DT><A HREF="org/marc4j/util/Iso5426ToUnicode.html#convert(java.lang.String)"><B>convert(String)</B></A> -
Method in class org.marc4j.util.<A HREF="org/marc4j/util/Iso5426ToUnicode.html" title="class in org.marc4j.util">Iso5426ToUnicode</A>
<DD>Converts UNIMARC (ISO 5426 charset) data to UCS/Unicode.
<DT><A HREF="org/marc4j/util/Iso5426ToUnicode.html#convert(char[])"><B>convert(char[])</B></A> -
Method in class org.marc4j.util.<A HREF="org/marc4j/util/Iso5426ToUnicode.html" title="class in org.marc4j.util">Iso5426ToUnicode</A>
<DD>Converts UNIMARC data to UCS/Unicode.
<DT><A HREF="org/marc4j/util/Iso6937ToUnicode.html#convert(java.lang.String)"><B>convert(String)</B></A> -
Method in class org.marc4j.util.<A HREF="org/marc4j/util/Iso6937ToUnicode.html" title="class in org.marc4j.util">Iso6937ToUnicode</A>
<DD>Converts ISO 6937 data to UCS/Unicode.
<DT><A HREF="org/marc4j/util/Iso6937ToUnicode.html#convert(char[])"><B>convert(char[])</B></A> -
Method in class org.marc4j.util.<A HREF="org/marc4j/util/Iso6937ToUnicode.html" title="class in org.marc4j.util">Iso6937ToUnicode</A>
<DD>Converts ISO 6937 data to UCS/Unicode.
<DT><A HREF="org/marc4j/util/UnicodeToAnsel.html#convert(java.lang.String)"><B>convert(String)</B></A> -
Method in class org.marc4j.util.<A HREF="org/marc4j/util/UnicodeToAnsel.html" title="class in org.marc4j.util">UnicodeToAnsel</A>
<DD>Converts UCS/Unicode data to MARC-8.
<DT><A HREF="org/marc4j/util/UnicodeToAnsel.html#convert(char[])"><B>convert(char[])</B></A> -
Method in class org.marc4j.util.<A HREF="org/marc4j/util/UnicodeToAnsel.html" title="class in org.marc4j.util">UnicodeToAnsel</A>
<DD>Converts UCS/Unicode data to MARC-8.
<DT><A HREF="org/marc4j/util/UnicodeToIso5426.html#convert(java.lang.String)"><B>convert(String)</B></A> -
Method in class org.marc4j.util.<A HREF="org/marc4j/util/UnicodeToIso5426.html" title="class in org.marc4j.util">UnicodeToIso5426</A>
<DD>Converts UCS/Unicode data to UNIMARC (ISO 5426 charset).
<DT><A HREF="org/marc4j/util/UnicodeToIso5426.html#convert(char[])"><B>convert(char[])</B></A> -
Method in class org.marc4j.util.<A HREF="org/marc4j/util/UnicodeToIso5426.html" title="class in org.marc4j.util">UnicodeToIso5426</A>
<DD>Converts UCS/Unicode data to UNIMARC (ISO 5426 charset).
<DT><A HREF="org/marc4j/util/UnicodeToIso6937.html#convert(java.lang.String)"><B>convert(String)</B></A> -
Method in class org.marc4j.util.<A HREF="org/marc4j/util/UnicodeToIso6937.html" title="class in org.marc4j.util">UnicodeToIso6937</A>
<DD>Converts UCS/Unicode data to ISO 6937.
<DT><A HREF="org/marc4j/util/UnicodeToIso6937.html#convert(char[])"><B>convert(char[])</B></A> -
Method in class org.marc4j.util.<A HREF="org/marc4j/util/UnicodeToIso6937.html" title="class in org.marc4j.util">UnicodeToIso6937</A>
<DD>Converts UCS/Unicode data to ISO 6937.
<DT><A HREF="org/marc4j/util/CharacterConverterLoader.html#createCharacterConverter(java.lang.String, java.lang.String)"><B>createCharacterConverter(String, String)</B></A> -
Static method in class org.marc4j.util.<A HREF="org/marc4j/util/CharacterConverterLoader.html" title="class in org.marc4j.util">CharacterConverterLoader</A>
<DD>Returns a new instance for the class defined by the given system
property, or default class.
<DT><A HREF="org/marc4j/util/AnselToUnicode.html#ct"><B>ct</B></A> -
Variable in class org.marc4j.util.<A HREF="org/marc4j/util/AnselToUnicode.html" title="class in org.marc4j.util">AnselToUnicode</A>
<DD>
</DL>
<HR>
<A NAME="_D_"><!-- --></A><H2>
<B>D</B></H2>
<DL>
<DT><A HREF="org/marc4j/marc/DataField.html" title="class in org.marc4j.marc"><B>DataField</B></A> - class org.marc4j.marc.<A HREF="org/marc4j/marc/DataField.html" title="class in org.marc4j.marc">DataField</A>.<DD><code>DataField</code> defines behaviour for a data field
(tag 010-999). <DT><A HREF="org/marc4j/marc/DataField.html#DataField()"><B>DataField()</B></A> -
Constructor for class org.marc4j.marc.<A HREF="org/marc4j/marc/DataField.html" title="class in org.marc4j.marc">DataField</A>
<DD>Default constructor.
<DT><A HREF="org/marc4j/marc/DataField.html#DataField(java.lang.String)"><B>DataField(String)</B></A> -
Constructor for class org.marc4j.marc.<A HREF="org/marc4j/marc/DataField.html" title="class in org.marc4j.marc">DataField</A>
<DD>Creates a new <code>DataField</code> instance and
registers the tag name.
<DT><A HREF="org/marc4j/marc/DataField.html#DataField(java.lang.String, char, char)"><B>DataField(String, char, char)</B></A> -
Constructor for class org.marc4j.marc.<A HREF="org/marc4j/marc/DataField.html" title="class in org.marc4j.marc">DataField</A>
<DD>Creates a new <code>DataField</code> instance and
registers the tag name and the indicator values.
<DT><A HREF="org/marc4j/helpers/DefaultHandler.html" title="class in org.marc4j.helpers"><B>DefaultHandler</B></A> - class org.marc4j.helpers.<A HREF="org/marc4j/helpers/DefaultHandler.html" title="class in org.marc4j.helpers">DefaultHandler</A>.<DD>Provides default implementations for the callbacks
in the <code>MarcHandler</code> and <code>ErrorHandler</code>
interface. <DT><A HREF="org/marc4j/helpers/DefaultHandler.html#DefaultHandler()"><B>DefaultHandler()</B></A> -
Constructor for class org.marc4j.helpers.<A HREF="org/marc4j/helpers/DefaultHandler.html" title="class in org.marc4j.helpers">DefaultHandler</A>
<DD>
<DT><A HREF="org/marc4j/marc/Directory.html" title="class in org.marc4j.marc"><B>Directory</B></A> - class org.marc4j.marc.<A HREF="org/marc4j/marc/Directory.html" title="class in org.marc4j.marc">Directory</A>.<DD><code>Directory</code> is a helper class to build a directory. <DT><A HREF="org/marc4j/marc/Directory.html#Directory()"><B>Directory()</B></A> -
Constructor for class org.marc4j.marc.<A HREF="org/marc4j/marc/Directory.html" title="class in org.marc4j.marc">Directory</A>
<DD>Default constructor.
<DT><A HREF="org/marc4j/marcxml/DoctypeDecl.html" title="class in org.marc4j.marcxml"><B>DoctypeDecl</B></A> - class org.marc4j.marcxml.<A HREF="org/marc4j/marcxml/DoctypeDecl.html" title="class in org.marc4j.marcxml">DoctypeDecl</A>.<DD><code>DoctypeDecl</code> defines behaviour for a document type
declaration. <DT><A HREF="org/marc4j/marcxml/DoctypeDecl.html#DoctypeDecl()"><B>DoctypeDecl()</B></A> -
Constructor for class org.marc4j.marcxml.<A HREF="org/marc4j/marcxml/DoctypeDecl.html" title="class in org.marc4j.marcxml">DoctypeDecl</A>
<DD>Default constructor
<DT><A HREF="org/marc4j/marcxml/DoctypeDecl.html#DoctypeDecl(java.lang.String, java.lang.String, java.lang.String)"><B>DoctypeDecl(String, String, String)</B></A> -
Constructor for class org.marc4j.marcxml.<A HREF="org/marc4j/marcxml/DoctypeDecl.html" title="class in org.marc4j.marcxml">DoctypeDecl</A>
<DD>Creates a new DocType instance
</DL>
<HR>
<A NAME="_E_"><!-- --></A><H2>
<B>E</B></H2>
<DL>
<DT><A HREF="org/marc4j/marcxml/SaxErrorHandler.html#ERR_IGNORE"><B>ERR_IGNORE</B></A> -
Static variable in class org.marc4j.marcxml.<A HREF="org/marc4j/marcxml/SaxErrorHandler.html" title="class in org.marc4j.marcxml">SaxErrorHandler</A>
<DD>
<DT><A HREF="org/marc4j/marcxml/SaxErrorHandler.html#ERR_PRINT"><B>ERR_PRINT</B></A> -
Static variable in class org.marc4j.marcxml.<A HREF="org/marc4j/marcxml/SaxErrorHandler.html" title="class in org.marc4j.marcxml">SaxErrorHandler</A>
<DD>
<DT><A HREF="org/marc4j/ErrorHandler.html" title="interface in org.marc4j"><B>ErrorHandler</B></A> - interface org.marc4j.<A HREF="org/marc4j/ErrorHandler.html" title="interface in org.marc4j">ErrorHandler</A>.<DD>Defines Java callbacks to handle exceptions. <DT><A HREF="org/marc4j/helpers/ErrorHandlerImpl.html" title="class in org.marc4j.helpers"><B>ErrorHandlerImpl</B></A> - class org.marc4j.helpers.<A HREF="org/marc4j/helpers/ErrorHandlerImpl.html" title="class in org.marc4j.helpers">ErrorHandlerImpl</A>.<DD>Implements the <code>ErrorHandler</code> interface to report about
warnings and errors that occur during the parsing of a MARC record. <DT><A HREF="org/marc4j/helpers/ErrorHandlerImpl.html#ErrorHandlerImpl()"><B>ErrorHandlerImpl()</B></A> -
Constructor for class org.marc4j.helpers.<A HREF="org/marc4j/helpers/ErrorHandlerImpl.html" title="class in org.marc4j.helpers">ErrorHandlerImpl</A>
<DD>
<DT><A HREF="org/marc4j/marcxml/ExtendedFilter.html" title="class in org.marc4j.marcxml"><B>ExtendedFilter</B></A> - class org.marc4j.marcxml.<A HREF="org/marc4j/marcxml/ExtendedFilter.html" title="class in org.marc4j.marcxml">ExtendedFilter</A>.<DD><code>ExtendedFilter</code> extends <code>XMLFilterImpl</code>
with an implementation of the <code>LexicalHandler</code> interface. <DT><A HREF="org/marc4j/marcxml/ExtendedFilter.html#ExtendedFilter()"><B>ExtendedFilter()</B></A> -
Constructor for class org.marc4j.marcxml.<A HREF="org/marc4j/marcxml/ExtendedFilter.html" title="class in org.marc4j.marcxml">ExtendedFilter</A>
<DD>
<DT><A HREF="org/marc4j/marcxml/ExtendedFilter.html#endCDATA()"><B>endCDATA()</B></A> -
Method in class org.marc4j.marcxml.<A HREF="org/marc4j/marcxml/ExtendedFilter.html" title="class in org.marc4j.marcxml">ExtendedFilter</A>
<DD>
<DT><A HREF="org/marc4j/MarcHandler.html#endCollection()"><B>endCollection()</B></A> -
Method in interface org.marc4j.<A HREF="org/marc4j/MarcHandler.html" title="interface in org.marc4j">MarcHandler</A>
<DD>Receives notification at the end of the collection.
<DT><A HREF="org/marc4j/helpers/DefaultHandler.html#endCollection()"><B>endCollection()</B></A> -
Method in class org.marc4j.helpers.<A HREF="org/marc4j/helpers/DefaultHandler.html" title="class in org.marc4j.helpers">DefaultHandler</A>
<DD>
<DT><A HREF="org/marc4j/helpers/RecordBuilder.html#endCollection()"><B>endCollection()</B></A> -
Method in class org.marc4j.helpers.<A HREF="org/marc4j/helpers/RecordBuilder.html" title="class in org.marc4j.helpers">RecordBuilder</A>
<DD>Reports the end of the file.
<DT><A HREF="org/marc4j/helpers/RecordHandler.html#endCollection()"><B>endCollection()</B></A> -
Method in interface org.marc4j.helpers.<A HREF="org/marc4j/helpers/RecordHandler.html" title="interface in org.marc4j.helpers">RecordHandler</A>
<DD>Receives notification at the end of the collection.
<DT><A HREF="org/marc4j/marcxml/MarcXmlFilter.html#endCollection()"><B>endCollection()</B></A> -
Method in class org.marc4j.marcxml.<A HREF="org/marc4j/marcxml/MarcXmlFilter.html" title="class in org.marc4j.marcxml">MarcXmlFilter</A>
<DD><B>Deprecated.</B> Reports the closing element for the root, reports the end
of the prefix mapping and the end a document.
<DT><A HREF="org/marc4j/marcxml/MarcXmlReader.html#endCollection()"><B>endCollection()</B></A> -
Method in class org.marc4j.marcxml.<A HREF="org/marc4j/marcxml/MarcXmlReader.html" title="class in org.marc4j.marcxml">MarcXmlReader</A>
<DD>Reports the closing element for the root, reports the end
of the prefix mapping and the end a document.
<DT><A HREF="org/marc4j/util/MarcWriter.html#endCollection()"><B>endCollection()</B></A> -
Method in class org.marc4j.util.<A HREF="org/marc4j/util/MarcWriter.html" title="class in org.marc4j.util">MarcWriter</A>
<DD>
<DT><A HREF="org/marc4j/util/TaggedWriter.html#endCollection()"><B>endCollection()</B></A> -
Method in class org.marc4j.util.<A HREF="org/marc4j/util/TaggedWriter.html" title="class in org.marc4j.util">TaggedWriter</A>
<DD>
<DT><A HREF="org/marc4j/marcxml/ExtendedFilter.html#endDTD()"><B>endDTD()</B></A> -
Method in class org.marc4j.marcxml.<A HREF="org/marc4j/marcxml/ExtendedFilter.html" title="class in org.marc4j.marcxml">ExtendedFilter</A>
<DD>
<DT><A HREF="org/marc4j/MarcHandler.html#endDataField(java.lang.String)"><B>endDataField(String)</B></A> -
Method in interface org.marc4j.<A HREF="org/marc4j/MarcHandler.html" title="interface in org.marc4j">MarcHandler</A>
<DD>Receives notification at the end of each data field
<DT><A HREF="org/marc4j/helpers/DefaultHandler.html#endDataField(java.lang.String)"><B>endDataField(String)</B></A> -
Method in class org.marc4j.helpers.<A HREF="org/marc4j/helpers/DefaultHandler.html" title="class in org.marc4j.helpers">DefaultHandler</A>
<DD>
<DT><A HREF="org/marc4j/helpers/RecordBuilder.html#endDataField(java.lang.String)"><B>endDataField(String)</B></A> -
Method in class org.marc4j.helpers.<A HREF="org/marc4j/helpers/RecordBuilder.html" title="class in org.marc4j.helpers">RecordBuilder</A>
<DD>Adds a data field to the record object.
<DT><A HREF="org/marc4j/marcxml/MarcXmlFilter.html#endDataField(java.lang.String)"><B>endDataField(String)</B></A> -
Method in class org.marc4j.marcxml.<A HREF="org/marc4j/marcxml/MarcXmlFilter.html" title="class in org.marc4j.marcxml">MarcXmlFilter</A>
<DD><B>Deprecated.</B> Reports the closing element for a data field.
<DT><A HREF="org/marc4j/marcxml/MarcXmlReader.html#endDataField(java.lang.String)"><B>endDataField(String)</B></A> -
Method in class org.marc4j.marcxml.<A HREF="org/marc4j/marcxml/MarcXmlReader.html" title="class in org.marc4j.marcxml">MarcXmlReader</A>
<DD>Reports the closing element for a data field.
<DT><A HREF="org/marc4j/util/MarcWriter.html#endDataField(java.lang.String)"><B>endDataField(String)</B></A> -
Method in class org.marc4j.util.<A HREF="org/marc4j/util/MarcWriter.html" title="class in org.marc4j.util">MarcWriter</A>
<DD>
<DT><A HREF="org/marc4j/util/TaggedWriter.html#endDataField(java.lang.String)"><B>endDataField(String)</B></A> -
Method in class org.marc4j.util.<A HREF="org/marc4j/util/TaggedWriter.html" title="class in org.marc4j.util">TaggedWriter</A>
<DD>
<DT><A HREF="org/marc4j/marcxml/MarcXmlHandler.html#endElement(java.lang.String, java.lang.String, java.lang.String)"><B>endElement(String, String, String)</B></A> -
Method in class org.marc4j.marcxml.<A HREF="org/marc4j/marcxml/MarcXmlHandler.html" title="class in org.marc4j.marcxml">MarcXmlHandler</A>
<DD>
<DT><A HREF="org/marc4j/util/CodeTableHandler.html#endElement(java.lang.String, java.lang.String, java.lang.String)"><B>endElement(String, String, String)</B></A> -
Method in class org.marc4j.util.<A HREF="org/marc4j/util/CodeTableHandler.html" title="class in org.marc4j.util">CodeTableHandler</A>
<DD>
<DT><A HREF="org/marc4j/util/ReverseCodeTableHandler.html#endElement(java.lang.String, java.lang.String, java.lang.String)"><B>endElement(String, String, String)</B></A> -
Method in class org.marc4j.util.<A HREF="org/marc4j/util/ReverseCodeTableHandler.html" title="class in org.marc4j.util">ReverseCodeTableHandler</A>
<DD>
<DT><A HREF="org/marc4j/marcxml/ExtendedFilter.html#endEntity(java.lang.String)"><B>endEntity(String)</B></A> -
Method in class org.marc4j.marcxml.<A HREF="org/marc4j/marcxml/ExtendedFilter.html" title="class in org.marc4j.marcxml">ExtendedFilter</A>
<DD>
<DT><A HREF="org/marc4j/MarcHandler.html#endRecord()"><B>endRecord()</B></A> -
Method in interface org.marc4j.<A HREF="org/marc4j/MarcHandler.html" title="interface in org.marc4j">MarcHandler</A>
<DD>Receives notification at the end of each record.
<DT><A HREF="org/marc4j/helpers/DefaultHandler.html#endRecord()"><B>endRecord()</B></A> -
Method in class org.marc4j.helpers.<A HREF="org/marc4j/helpers/DefaultHandler.html" title="class in org.marc4j.helpers">DefaultHandler</A>
<DD>
<DT><A HREF="org/marc4j/helpers/RecordBuilder.html#endRecord()"><B>endRecord()</B></A> -
Method in class org.marc4j.helpers.<A HREF="org/marc4j/helpers/RecordBuilder.html" title="class in org.marc4j.helpers">RecordBuilder</A>
<DD>Reports the end of a record and sets the record object.
<DT><A HREF="org/marc4j/marcxml/MarcXmlFilter.html#endRecord()"><B>endRecord()</B></A> -
Method in class org.marc4j.marcxml.<A HREF="org/marc4j/marcxml/MarcXmlFilter.html" title="class in org.marc4j.marcxml">MarcXmlFilter</A>
<DD><B>Deprecated.</B> Reports the closing element for a record.
<DT><A HREF="org/marc4j/marcxml/MarcXmlReader.html#endRecord()"><B>endRecord()</B></A> -
Method in class org.marc4j.marcxml.<A HREF="org/marc4j/marcxml/MarcXmlReader.html" title="class in org.marc4j.marcxml">MarcXmlReader</A>
<DD>Reports the closing element for a record.
<DT><A HREF="org/marc4j/util/MarcWriter.html#endRecord()"><B>endRecord()</B></A> -
Method in class org.marc4j.util.<A HREF="org/marc4j/util/MarcWriter.html" title="class in org.marc4j.util">MarcWriter</A>
<DD>
<DT><A HREF="org/marc4j/util/TaggedWriter.html#endRecord()"><B>endRecord()</B></A> -
Method in class org.marc4j.util.<A HREF="org/marc4j/util/TaggedWriter.html" title="class in org.marc4j.util">TaggedWriter</A>
<DD>
<DT><A HREF="org/marc4j/ErrorHandler.html#error(org.marc4j.MarcReaderException)"><B>error(MarcReaderException)</B></A> -
Method in interface org.marc4j.<A HREF="org/marc4j/ErrorHandler.html" title="interface in org.marc4j">ErrorHandler</A>
<DD>Receive notification of an error.
<DT><A HREF="org/marc4j/helpers/DefaultHandler.html#error(org.marc4j.MarcReaderException)"><B>error(MarcReaderException)</B></A> -
Method in class org.marc4j.helpers.<A HREF="org/marc4j/helpers/DefaultHandler.html" title="class in org.marc4j.helpers">DefaultHandler</A>
<DD>
<DT><A HREF="org/marc4j/helpers/ErrorHandlerImpl.html#error(org.marc4j.MarcReaderException)"><B>error(MarcReaderException)</B></A> -
Method in class org.marc4j.helpers.<A HREF="org/marc4j/helpers/ErrorHandlerImpl.html" title="class in org.marc4j.helpers">ErrorHandlerImpl</A>
<DD>
<DT><A HREF="org/marc4j/marcxml/SaxErrorHandler.html#error(org.xml.sax.SAXParseException)"><B>error(SAXParseException)</B></A> -
Method in class org.marc4j.marcxml.<A HREF="org/marc4j/marcxml/SaxErrorHandler.html" title="class in org.marc4j.marcxml">SaxErrorHandler</A>
<DD>
</DL>
<HR>
<A NAME="_F_"><!-- --></A><H2>
<B>F</B></H2>
<DL>
<DT><A HREF="org/marc4j/marcxml/SaxErrorHandler.html#FATAL_IGNORE"><B>FATAL_IGNORE</B></A> -
Static variable in class org.marc4j.marcxml.<A HREF="org/marc4j/marcxml/SaxErrorHandler.html" title="class in org.marc4j.marcxml">SaxErrorHandler</A>
<DD>
<DT><A HREF="org/marc4j/marcxml/SaxErrorHandler.html#FATAL_PRINT"><B>FATAL_PRINT</B></A> -
Static variable in class org.marc4j.marcxml.<A HREF="org/marc4j/marcxml/SaxErrorHandler.html" title="class in org.marc4j.marcxml">SaxErrorHandler</A>
<DD>
<DT><A HREF="org/marc4j/marcxml/MarcSource.html#FEATURE"><B>FEATURE</B></A> -
Static variable in class org.marc4j.marcxml.<A HREF="org/marc4j/marcxml/MarcSource.html" title="class in org.marc4j.marcxml">MarcSource</A>
<DD>
<DT><A HREF="org/marc4j/marc/MarcConstants.html#FT"><B>FT</B></A> -
Static variable in class org.marc4j.marc.<A HREF="org/marc4j/marc/MarcConstants.html" title="class in org.marc4j.marc">MarcConstants</A>
<DD>FIELD TERMINATOR
<DT><A HREF="org/marc4j/marc/VariableField.html#FT"><B>FT</B></A> -
Static variable in class org.marc4j.marc.<A HREF="org/marc4j/marc/VariableField.html" title="class in org.marc4j.marc">VariableField</A>
<DD>The field terminator
<DT><A HREF="org/marc4j/ErrorHandler.html#fatalError(org.marc4j.MarcReaderException)"><B>fatalError(MarcReaderException)</B></A> -
Method in interface org.marc4j.<A HREF="org/marc4j/ErrorHandler.html" title="interface in org.marc4j">ErrorHandler</A>
<DD>Receive notification of a fatal error.
<DT><A HREF="org/marc4j/helpers/DefaultHandler.html#fatalError(org.marc4j.MarcReaderException)"><B>fatalError(MarcReaderException)</B></A> -
Method in class org.marc4j.helpers.<A HREF="org/marc4j/helpers/DefaultHandler.html" title="class in org.marc4j.helpers">DefaultHandler</A>
<DD>
<DT><A HREF="org/marc4j/helpers/ErrorHandlerImpl.html#fatalError(org.marc4j.MarcReaderException)"><B>fatalError(MarcReaderException)</B></A> -
Method in class org.marc4j.helpers.<A HREF="org/marc4j/helpers/ErrorHandlerImpl.html" title="class in org.marc4j.helpers">ErrorHandlerImpl</A>
<DD>
<DT><A HREF="org/marc4j/marcxml/SaxErrorHandler.html#fatalError(org.xml.sax.SAXParseException)"><B>fatalError(SAXParseException)</B></A> -
Method in class org.marc4j.marcxml.<A HREF="org/marc4j/marcxml/SaxErrorHandler.html" title="class in org.marc4j.marcxml">SaxErrorHandler</A>
<DD>
</DL>
<HR>
<A NAME="_G_"><!-- --></A><H2>
<B>G</B></H2>
<DL>
<DT><A HREF="org/marc4j/util/CodeTableTracker.html#g"><B>g</B></A> -
Variable in class org.marc4j.util.<A HREF="org/marc4j/util/CodeTableTracker.html" title="class in org.marc4j.util">CodeTableTracker</A>
<DD>
<DT><A HREF="org/marc4j/marc/Leader.html#getBaseAddressOfData()"><B>getBaseAddressOfData()</B></A> -
Method in class org.marc4j.marc.<A HREF="org/marc4j/marc/Leader.html" title="class in org.marc4j.marc">Leader</A>
<DD>Returns the base address of data (positions 12-16).
<DT><A HREF="org/marc4j/marc/MarcException.html#getCause()"><B>getCause()</B></A> -
Method in class org.marc4j.marc.<A HREF="org/marc4j/marc/MarcException.html" title="class in org.marc4j.marc">MarcException</A>
<DD>Return the root cause or null if there was no
original exception.
<DT><A HREF="org/marc4j/util/CharacterConverterLoaderException.html#getCause()"><B>getCause()</B></A> -
Method in class org.marc4j.util.<A HREF="org/marc4j/util/CharacterConverterLoaderException.html" title="class in org.marc4j.util">CharacterConverterLoaderException</A>
<DD>Return the root cause or null if there was no
original exception.
<DT><A HREF="org/marc4j/util/CodeTable.html#getChar(int, int)"><B>getChar(int, int)</B></A> -
Static method in class org.marc4j.util.<A HREF="org/marc4j/util/CodeTable.html" title="class in org.marc4j.util">CodeTable</A>
<DD>
<DT><A HREF="org/marc4j/util/ReverseCodeTable.html#getChar(java.lang.Character, org.marc4j.util.CodeTableTracker)"><B>getChar(Character, CodeTableTracker)</B></A> -
Static method in class org.marc4j.util.<A HREF="org/marc4j/util/ReverseCodeTable.html" title="class in org.marc4j.util">ReverseCodeTable</A>
<DD>
<DT><A HREF="org/marc4j/marc/Leader.html#getCharCodingScheme()"><B>getCharCodingScheme()</B></A> -
Method in class org.marc4j.marc.<A HREF="org/marc4j/marc/Leader.html" title="class in org.marc4j.marc">Leader</A>
<DD>Returns the character coding scheme (position 09).
<DT><A HREF="org/marc4j/util/CodeTableHandler.html#getCharSets()"><B>getCharSets()</B></A> -
Method in class org.marc4j.util.<A HREF="org/marc4j/util/CodeTableHandler.html" title="class in org.marc4j.util">CodeTableHandler</A>
<DD>
<DT><A HREF="org/marc4j/util/ReverseCodeTableHandler.html#getCharSets()"><B>getCharSets()</B></A> -
Method in class org.marc4j.util.<A HREF="org/marc4j/util/ReverseCodeTableHandler.html" title="class in org.marc4j.util">ReverseCodeTableHandler</A>
<DD>
<DT><A HREF="org/marc4j/marc/Subfield.html#getCode()"><B>getCode()</B></A> -
Method in class org.marc4j.marc.<A HREF="org/marc4j/marc/Subfield.html" title="class in org.marc4j.marc">Subfield</A>
<DD>Returns the data element identifier.
<DT><A HREF="org/marc4j/util/CodeTableHandler.html#getCombiningChars()"><B>getCombiningChars()</B></A> -
Method in class org.marc4j.util.<A HREF="org/marc4j/util/CodeTableHandler.html" title="class in org.marc4j.util">CodeTableHandler</A>
<DD>
<DT><A HREF="org/marc4j/util/ReverseCodeTableHandler.html#getCombiningChars()"><B>getCombiningChars()</B></A> -
Method in class org.marc4j.util.<A HREF="org/marc4j/util/ReverseCodeTableHandler.html" title="class in org.marc4j.util">ReverseCodeTableHandler</A>
<DD>
<DT><A HREF="org/marc4j/marcxml/MarcXmlReader.html#getContentHandler()"><B>getContentHandler()</B></A> -
Method in class org.marc4j.marcxml.<A HREF="org/marc4j/marcxml/MarcXmlReader.html" title="class in org.marc4j.marcxml">MarcXmlReader</A>
<DD>Returns the content handler.
<DT><A HREF="org/marc4j/marc/Record.html#getControlField(java.lang.String)"><B>getControlField(String)</B></A> -
Method in class org.marc4j.marc.<A HREF="org/marc4j/marc/Record.html" title="class in org.marc4j.marc">Record</A>
<DD>Returns the control field for the given tag.
<DT><A HREF="org/marc4j/marc/Record.html#getControlFieldList()"><B>getControlFieldList()</B></A> -
Method in class org.marc4j.marc.<A HREF="org/marc4j/marc/Record.html" title="class in org.marc4j.marc">Record</A>
<DD>Returns the collection of control fields.
<DT><A HREF="org/marc4j/MarcReaderException.html#getControlNumber()"><B>getControlNumber()</B></A> -
Method in class org.marc4j.<A HREF="org/marc4j/MarcReaderException.html" title="class in org.marc4j">MarcReaderException</A>
<DD>Returns the control number (tag 001).
<DT><A HREF="org/marc4j/marc/Record.html#getControlNumber()"><B>getControlNumber()</B></A> -
Method in class org.marc4j.marc.<A HREF="org/marc4j/marc/Record.html" title="class in org.marc4j.marc">Record</A>
<DD>Returns the control number (contents for tag 001).
<DT><A HREF="org/marc4j/marc/Record.html#getControlNumberField()"><B>getControlNumberField()</B></A> -
Method in class org.marc4j.marc.<A HREF="org/marc4j/marc/Record.html" title="class in org.marc4j.marc">Record</A>
<DD>Returns the control number field (tag 001).
<DT><A HREF="org/marc4j/util/CodeTableTracker.html#getCurrent(byte)"><B>getCurrent(byte)</B></A> -
Method in class org.marc4j.util.<A HREF="org/marc4j/util/CodeTableTracker.html" title="class in org.marc4j.util">CodeTableTracker</A>
<DD>
<DT><A HREF="org/marc4j/marcxml/MarcXmlReader.html#getDTDHandler()"><B>getDTDHandler()</B></A> -
Method in class org.marc4j.marcxml.<A HREF="org/marc4j/marcxml/MarcXmlReader.html" title="class in org.marc4j.marcxml">MarcXmlReader</A>
<DD>
<DT><A HREF="org/marc4j/marc/ControlField.html#getData()"><B>getData()</B></A> -
Method in class org.marc4j.marc.<A HREF="org/marc4j/marc/ControlField.html" title="class in org.marc4j.marc">ControlField</A>
<DD>Returns the control field data.
<DT><A HREF="org/marc4j/marc/Subfield.html#getData()"><B>getData()</B></A> -
Method in class org.marc4j.marc.<A HREF="org/marc4j/marc/Subfield.html" title="class in org.marc4j.marc">Subfield</A>
<DD>Returns the data element.
<DT><A HREF="org/marc4j/marc/Record.html#getDataField(java.lang.String)"><B>getDataField(String)</B></A> -
Method in class org.marc4j.marc.<A HREF="org/marc4j/marc/Record.html" title="class in org.marc4j.marc">Record</A>
<DD>Returns the data field for the given tag.
<DT><A HREF="org/marc4j/marc/Record.html#getDataFieldList()"><B>getDataFieldList()</B></A> -
Method in class org.marc4j.marc.<A HREF="org/marc4j/marc/Record.html" title="class in org.marc4j.marc">Record</A>
<DD>Returns the collection of data fields.
<DT><A HREF="org/marc4j/marcxml/MarcXmlReader.html#getEntityResolver()"><B>getEntityResolver()</B></A> -
Method in class org.marc4j.marcxml.<A HREF="org/marc4j/marcxml/MarcXmlReader.html" title="class in org.marc4j.marcxml">MarcXmlReader</A>
<DD>
<DT><A HREF="org/marc4j/marc/Leader.html#getEntryMap()"><B>getEntryMap()</B></A> -
Method in class org.marc4j.marc.<A HREF="org/marc4j/marc/Leader.html" title="class in org.marc4j.marc">Leader</A>
<DD>Returns the entry map (positions 20-23).
<DT><A HREF="org/marc4j/marcxml/MarcXmlReader.html#getErrorHandler()"><B>getErrorHandler()</B></A> -
Method in class org.marc4j.marcxml.<A HREF="org/marc4j/marcxml/MarcXmlReader.html" title="class in org.marc4j.marcxml">MarcXmlReader</A>
<DD>
<DT><A HREF="org/marc4j/marcxml/MarcXmlReader.html#getFeature(java.lang.String)"><B>getFeature(String)</B></A> -
Method in class org.marc4j.marcxml.<A HREF="org/marc4j/marcxml/MarcXmlReader.html" title="class in org.marc4j.marcxml">MarcXmlReader</A>
<DD>Returns the boolean for the feature with the given name.
<DT><A HREF="org/marc4j/MarcReaderException.html#getFileName()"><B>getFileName()</B></A> -
Method in class org.marc4j.<A HREF="org/marc4j/MarcReaderException.html" title="class in org.marc4j">MarcReaderException</A>
<DD>Returns the file name or null if there is no input file.
<DT><A HREF="org/marc4j/marcxml/MarcResult.html#getHandler()"><B>getHandler()</B></A> -
Method in class org.marc4j.marcxml.<A HREF="org/marc4j/marcxml/MarcResult.html" title="class in org.marc4j.marcxml">MarcResult</A>
<DD>Returns the MarcHandler implementation.
<DT><A HREF="org/marc4j/marc/Leader.html#getImplDefined1()"><B>getImplDefined1()</B></A> -
Method in class org.marc4j.marc.<A HREF="org/marc4j/marc/Leader.html" title="class in org.marc4j.marc">Leader</A>
<DD>Returns implementation defined values
(positions 07-08).
<DT><A HREF="org/marc4j/marc/Leader.html#getImplDefined2()"><B>getImplDefined2()</B></A> -
Method in class org.marc4j.marc.<A HREF="org/marc4j/marc/Leader.html" title="class in org.marc4j.marc">Leader</A>
<DD>Returns implementation defined values
(positions 17-19).
<DT><A HREF="org/marc4j/marc/DataField.html#getIndicator1()"><B>getIndicator1()</B></A> -
Method in class org.marc4j.marc.<A HREF="org/marc4j/marc/DataField.html" title="class in org.marc4j.marc">DataField</A>
<DD>Returns the first indicator.
<DT><A HREF="org/marc4j/marc/DataField.html#getIndicator2()"><B>getIndicator2()</B></A> -
Method in class org.marc4j.marc.<A HREF="org/marc4j/marc/DataField.html" title="class in org.marc4j.marc">DataField</A>
<DD>Returns the second indicator.
<DT><A HREF="org/marc4j/marc/Leader.html#getIndicatorCount()"><B>getIndicatorCount()</B></A> -
Method in class org.marc4j.marc.<A HREF="org/marc4j/marc/Leader.html" title="class in org.marc4j.marc">Leader</A>
<DD>Returns the indicator count (positions 10).
<DT><A HREF="org/marc4j/marcxml/MarcSource.html#getInputStream()"><B>getInputStream()</B></A> -
Method in class org.marc4j.marcxml.<A HREF="org/marc4j/marcxml/MarcSource.html" title="class in org.marc4j.marcxml">MarcSource</A>
<DD>Returns the InputStream object.
<DT><A HREF="org/marc4j/marc/Record.html#getLeader()"><B>getLeader()</B></A> -
Method in class org.marc4j.marc.<A HREF="org/marc4j/marc/Record.html" title="class in org.marc4j.marc">Record</A>
<DD>Returns the leader.
<DT><A HREF="org/marc4j/marc/ControlField.html#getLength()"><B>getLength()</B></A> -
Method in class org.marc4j.marc.<A HREF="org/marc4j/marc/ControlField.html" title="class in org.marc4j.marc">ControlField</A>
<DD>Returns the length of the serialized form of the control field.
<DT><A HREF="org/marc4j/marc/DataField.html#getLength()"><B>getLength()</B></A> -
Method in class org.marc4j.marc.<A HREF="org/marc4j/marc/DataField.html" title="class in org.marc4j.marc">DataField</A>
<DD>Returns the length of the serialized form of
the current data field.
<DT><A HREF="org/marc4j/marc/Directory.html#getLength()"><B>getLength()</B></A> -
Method in class org.marc4j.marc.<A HREF="org/marc4j/marc/Directory.html" title="class in org.marc4j.marc">Directory</A>
<DD>Returns the length of the serialized form of the directory.
<DT><A HREF="org/marc4j/marcxml/MarcSource.html#getMarcReader()"><B>getMarcReader()</B></A> -
Method in class org.marc4j.marcxml.<A HREF="org/marc4j/marcxml/MarcSource.html" title="class in org.marc4j.marcxml">MarcSource</A>
<DD>Returns the MarcReader object.
<DT><A HREF="org/marc4j/marcxml/DoctypeDecl.html#getName()"><B>getName()</B></A> -
Method in class org.marc4j.marcxml.<A HREF="org/marc4j/marcxml/DoctypeDecl.html" title="class in org.marc4j.marcxml">DoctypeDecl</A>
<DD>Returns the name of the root element.
<DT><A HREF="org/marc4j/util/CodeTableTracker.html#getNext(byte)"><B>getNext(byte)</B></A> -
Method in class org.marc4j.util.<A HREF="org/marc4j/util/CodeTableTracker.html" title="class in org.marc4j.util">CodeTableTracker</A>
<DD>
<DT><A HREF="org/marc4j/MarcReaderException.html#getPosition()"><B>getPosition()</B></A> -
Method in class org.marc4j.<A HREF="org/marc4j/MarcReaderException.html" title="class in org.marc4j">MarcReaderException</A>
<DD>Returns the position in the character stream where the exception is thrown.
<DT><A HREF="org/marc4j/util/CodeTableTracker.html#getPrevious(byte)"><B>getPrevious(byte)</B></A> -
Method in class org.marc4j.util.<A HREF="org/marc4j/util/CodeTableTracker.html" title="class in org.marc4j.util">CodeTableTracker</A>
<DD>
<DT><A HREF="org/marc4j/marcxml/MarcXmlReader.html#getProperty(java.lang.String)"><B>getProperty(String)</B></A> -
Method in class org.marc4j.marcxml.<A HREF="org/marc4j/marcxml/MarcXmlReader.html" title="class in org.marc4j.marcxml">MarcXmlReader</A>
<DD>Returns the object for the given property.
<DT><A HREF="org/marc4j/marcxml/DoctypeDecl.html#getPublicId()"><B>getPublicId()</B></A> -
Method in class org.marc4j.marcxml.<A HREF="org/marc4j/marcxml/DoctypeDecl.html" title="class in org.marc4j.marcxml">DoctypeDecl</A>
<DD>Returns the public identifier.
<DT><A HREF="org/marc4j/marcxml/MarcSource.html#getPublicId()"><B>getPublicId()</B></A> -
Method in class org.marc4j.marcxml.<A HREF="org/marc4j/marcxml/MarcSource.html" title="class in org.marc4j.marcxml">MarcSource</A>
<DD>Returns the public identifier.
<DT><A HREF="org/marc4j/marcxml/MarcSource.html#getReader()"><B>getReader()</B></A> -
Method in class org.marc4j.marcxml.<A HREF="org/marc4j/marcxml/MarcSource.html" title="class in org.marc4j.marcxml">MarcSource</A>
<DD>Returns the Reader object.
<DT><A HREF="org/marc4j/marc/Collection.html#getRecord(int)"><B>getRecord(int)</B></A> -
Method in class org.marc4j.marc.<A HREF="org/marc4j/marc/Collection.html" title="class in org.marc4j.marc">Collection</A>
<DD>Returns the Record object for the given index.
<DT><A HREF="org/marc4j/marc/Leader.html#getRecordLength()"><B>getRecordLength()</B></A> -
Method in class org.marc4j.marc.<A HREF="org/marc4j/marc/Leader.html" title="class in org.marc4j.marc">Leader</A>
<DD>Returns the logical record length (positions 00-04).
<DT><A HREF="org/marc4j/marc/Leader.html#getRecordStatus()"><B>getRecordStatus()</B></A> -
Method in class org.marc4j.marc.<A HREF="org/marc4j/marc/Leader.html" title="class in org.marc4j.marc">Leader</A>
<DD>Returns the record status (positions 05).
<DT><A HREF="org/marc4j/marc/Collection.html#getSize()"><B>getSize()</B></A> -
Method in class org.marc4j.marc.<A HREF="org/marc4j/marc/Collection.html" title="class in org.marc4j.marc">Collection</A>
<DD>Returns the number of records in the collection.
<DT><A HREF="org/marc4j/marc/DataField.html#getSubfield(char)"><B>getSubfield(char)</B></A> -
Method in class org.marc4j.marc.<A HREF="org/marc4j/marc/DataField.html" title="class in org.marc4j.marc">DataField</A>
<DD>Returns the subfield for a given data element identifier.
<DT><A HREF="org/marc4j/marc/Leader.html#getSubfieldCodeLength()"><B>getSubfieldCodeLength()</B></A> -
Method in class org.marc4j.marc.<A HREF="org/marc4j/marc/Leader.html" title="class in org.marc4j.marc">Leader</A>
<DD>Returns the subfield code length (position 11).
<DT><A HREF="org/marc4j/marc/DataField.html#getSubfieldList()"><B>getSubfieldList()</B></A> -
Method in class org.marc4j.marc.<A HREF="org/marc4j/marc/DataField.html" title="class in org.marc4j.marc">DataField</A>
<DD>Returns the collection of data elements.
<DT><A HREF="org/marc4j/marcxml/DoctypeDecl.html#getSystemId()"><B>getSystemId()</B></A> -
Method in class org.marc4j.marcxml.<A HREF="org/marc4j/marcxml/DoctypeDecl.html" title="class in org.marc4j.marcxml">DoctypeDecl</A>
<DD>Returns the system identifier.
<DT><A HREF="org/marc4j/marcxml/MarcResult.html#getSystemId()"><B>getSystemId()</B></A> -
Method in class org.marc4j.marcxml.<A HREF="org/marc4j/marcxml/MarcResult.html" title="class in org.marc4j.marcxml">MarcResult</A>
<DD>Returns the system identifier.
<DT><A HREF="org/marc4j/marcxml/MarcSource.html#getSystemId()"><B>getSystemId()</B></A> -
Method in class org.marc4j.marcxml.<A HREF="org/marc4j/marcxml/MarcSource.html" title="class in org.marc4j.marcxml">MarcSource</A>
<DD>Returns the system identifier.
<DT><A HREF="org/marc4j/marc/ControlField.html#getTag()"><B>getTag()</B></A> -
Method in class org.marc4j.marc.<A HREF="org/marc4j/marc/ControlField.html" title="class in org.marc4j.marc">ControlField</A>
<DD>Returns the tag name.
<DT><A HREF="org/marc4j/marc/DataField.html#getTag()"><B>getTag()</B></A> -
Method in class org.marc4j.marc.<A HREF="org/marc4j/marc/DataField.html" title="class in org.marc4j.marc">DataField</A>
<DD>Returns the tag name.
<DT><A HREF="org/marc4j/marc/VariableField.html#getTag()"><B>getTag()</B></A> -
Method in class org.marc4j.marc.<A HREF="org/marc4j/marc/VariableField.html" title="class in org.marc4j.marc">VariableField</A>
<DD>Returns the tag name.
<DT><A HREF="org/marc4j/marc/Leader.html#getTypeOfRecord()"><B>getTypeOfRecord()</B></A> -
Method in class org.marc4j.marc.<A HREF="org/marc4j/marc/Leader.html" title="class in org.marc4j.marc">Leader</A>
<DD>Returns the record type (position 06).
<DT><A HREF="org/marc4j/marc/Record.html#getVariableFieldList()"><B>getVariableFieldList()</B></A> -
Method in class org.marc4j.marc.<A HREF="org/marc4j/marc/Record.html" title="class in org.marc4j.marc">Record</A>
<DD>Returns the collection of variable fields.
</DL>
<HR>
<A NAME="_H_"><!-- --></A><H2>
<B>H</B></H2>
<DL>
<DT><A HREF="org/marc4j/marc/Record.html#hasControlNumberField()"><B>hasControlNumberField()</B></A> -
Method in class org.marc4j.marc.<A HREF="org/marc4j/marc/Record.html" title="class in org.marc4j.marc">Record</A>
<DD>Returns true if the collection of variable fields contains a
control number field.
<DT><A HREF="org/marc4j/marc/DataField.html#hasSubfield(char)"><B>hasSubfield(char)</B></A> -
Method in class org.marc4j.marc.<A HREF="org/marc4j/marc/DataField.html" title="class in org.marc4j.marc">DataField</A>
<DD>Returns true if there is a subfield with the given identifier.
<DT><A HREF="org/marc4j/marc/Record.html#hasVariableField(java.lang.String)"><B>hasVariableField(String)</B></A> -
Method in class org.marc4j.marc.<A HREF="org/marc4j/marc/Record.html" title="class in org.marc4j.marc">Record</A>
<DD>Returns true if there is a variable field with the given tag.
</DL>
<HR>
<A NAME="_I_"><!-- --></A><H2>
<B>I</B></H2>
<DL>
<DT><A HREF="org/marc4j/marc/IllegalAddException.html" title="class in org.marc4j.marc"><B>IllegalAddException</B></A> - exception org.marc4j.marc.<A HREF="org/marc4j/marc/IllegalAddException.html" title="class in org.marc4j.marc">IllegalAddException</A>.<DD><code>IllegalAddException</code> is thrown when the addition of the
supplied object is illegal. <DT><A HREF="org/marc4j/marc/IllegalAddException.html#IllegalAddException(java.lang.String, java.lang.String)"><B>IllegalAddException(String, String)</B></A> -
Constructor for class org.marc4j.marc.<A HREF="org/marc4j/marc/IllegalAddException.html" title="class in org.marc4j.marc">IllegalAddException</A>
<DD>Creates an <code>Exception</code> indicating that the addttion
of the supplied object is illegal.
<DT><A HREF="org/marc4j/marc/IllegalDataElementException.html" title="class in org.marc4j.marc"><B>IllegalDataElementException</B></A> - exception org.marc4j.marc.<A HREF="org/marc4j/marc/IllegalDataElementException.html" title="class in org.marc4j.marc">IllegalDataElementException</A>.<DD><code>IllegalDataElementException</code> is thrown when a data element
contains invalid characters, like a field or record terminator
or a delimiter.<DT><A HREF="org/marc4j/marc/IllegalDataElementException.html#IllegalDataElementException()"><B>IllegalDataElementException()</B></A> -
Constructor for class org.marc4j.marc.<A HREF="org/marc4j/marc/IllegalDataElementException.html" title="class in org.marc4j.marc">IllegalDataElementException</A>
<DD>Creates a new <code>IllegalDataElementException</code>.
<DT><A HREF="org/marc4j/marc/IllegalDataElementException.html#IllegalDataElementException(java.lang.String)"><B>IllegalDataElementException(String)</B></A> -
Constructor for class org.marc4j.marc.<A HREF="org/marc4j/marc/IllegalDataElementException.html" title="class in org.marc4j.marc">IllegalDataElementException</A>
<DD>Creates a new <code>IllegalDataElementException</code>.
<DT><A HREF="org/marc4j/marc/IllegalTagException.html" title="class in org.marc4j.marc"><B>IllegalTagException</B></A> - exception org.marc4j.marc.<A HREF="org/marc4j/marc/IllegalTagException.html" title="class in org.marc4j.marc">IllegalTagException</A>.<DD><code>IllegalTagException</code> is thrown when a tag is supplied
that is invalid. <DT><A HREF="org/marc4j/marc/IllegalTagException.html#IllegalTagException(java.lang.String)"><B>IllegalTagException(String)</B></A> -
Constructor for class org.marc4j.marc.<A HREF="org/marc4j/marc/IllegalTagException.html" title="class in org.marc4j.marc">IllegalTagException</A>
<DD>Creates an <code>Exception</code> indicating that the name of the
tag is invalid.
<DT><A HREF="org/marc4j/marc/IllegalTagException.html#IllegalTagException(java.lang.String, java.lang.String)"><B>IllegalTagException(String, String)</B></A> -
Constructor for class org.marc4j.marc.<A HREF="org/marc4j/marc/IllegalTagException.html" title="class in org.marc4j.marc">IllegalTagException</A>
<DD>Creates an <code>Exception</code> indicating that the name of the
tag is invalid.
<DT><A HREF="org/marc4j/util/Iso5426ToUnicode.html" title="class in org.marc4j.util"><B>Iso5426ToUnicode</B></A> - class org.marc4j.util.<A HREF="org/marc4j/util/Iso5426ToUnicode.html" title="class in org.marc4j.util">Iso5426ToUnicode</A>.<DD>A utility to convert UNIMARC data to UCS/Unicode.<DT><A HREF="org/marc4j/util/Iso5426ToUnicode.html#Iso5426ToUnicode()"><B>Iso5426ToUnicode()</B></A> -
Constructor for class org.marc4j.util.<A HREF="org/marc4j/util/Iso5426ToUnicode.html" title="class in org.marc4j.util">Iso5426ToUnicode</A>
<DD>
<DT><A HREF="org/marc4j/util/Iso6937ToUnicode.html" title="class in org.marc4j.util"><B>Iso6937ToUnicode</B></A> - class org.marc4j.util.<A HREF="org/marc4j/util/Iso6937ToUnicode.html" title="class in org.marc4j.util">Iso6937ToUnicode</A>.<DD>A utility to convert ISO 6937 data to UCS/Unicode.<DT><A HREF="org/marc4j/util/Iso6937ToUnicode.html#Iso6937ToUnicode()"><B>Iso6937ToUnicode()</B></A> -
Constructor for class org.marc4j.util.<A HREF="org/marc4j/util/Iso6937ToUnicode.html" title="class in org.marc4j.util">Iso6937ToUnicode</A>
<DD>
<DT><A HREF="org/marc4j/util/ReverseCodeTable.html#inPreviousCharCodeTable(java.lang.Character, org.marc4j.util.CodeTableTracker)"><B>inPreviousCharCodeTable(Character, CodeTableTracker)</B></A> -
Static method in class org.marc4j.util.<A HREF="org/marc4j/util/ReverseCodeTable.html" title="class in org.marc4j.util">ReverseCodeTable</A>
<DD>
<DT><A HREF="org/marc4j/MarcReaderException.html#initCause(java.lang.Throwable)"><B>initCause(Throwable)</B></A> -
Method in class org.marc4j.<A HREF="org/marc4j/MarcReaderException.html" title="class in org.marc4j">MarcReaderException</A>
<DD>Sets the root cause of this exception.
<DT><A HREF="org/marc4j/marc/MarcException.html#initCause(java.lang.Throwable)"><B>initCause(Throwable)</B></A> -
Method in class org.marc4j.marc.<A HREF="org/marc4j/marc/MarcException.html" title="class in org.marc4j.marc">MarcException</A>
<DD>Sets the root cause of this exception.
<DT><A HREF="org/marc4j/util/CharacterConverterLoaderException.html#initCause(java.lang.Throwable)"><B>initCause(Throwable)</B></A> -
Method in class org.marc4j.util.<A HREF="org/marc4j/util/CharacterConverterLoaderException.html" title="class in org.marc4j.util">CharacterConverterLoaderException</A>
<DD>Sets the root cause of this exception.
<DT><A HREF="org/marc4j/util/CodeTable.html#isCombining(int, int, int)"><B>isCombining(int, int, int)</B></A> -
Static method in class org.marc4j.util.<A HREF="org/marc4j/util/CodeTable.html" title="class in org.marc4j.util">CodeTable</A>
<DD>
<DT><A HREF="org/marc4j/util/ReverseCodeTable.html#isCombining(java.lang.Character)"><B>isCombining(Character)</B></A> -
Static method in class org.marc4j.util.<A HREF="org/marc4j/util/ReverseCodeTable.html" title="class in org.marc4j.util">ReverseCodeTable</A>
<DD>
<DT><A HREF="org/marc4j/marc/Tag.html#isControlField(java.lang.String)"><B>isControlField(String)</B></A> -
Static method in class org.marc4j.marc.<A HREF="org/marc4j/marc/Tag.html" title="class in org.marc4j.marc">Tag</A>
<DD>Returns true if the tag identifies a control field.
<DT><A HREF="org/marc4j/marc/Tag.html#isControlNumberField(java.lang.String)"><B>isControlNumberField(String)</B></A> -
Static method in class org.marc4j.marc.<A HREF="org/marc4j/marc/Tag.html" title="class in org.marc4j.marc">Tag</A>
<DD>Returns true if the tag identifies a control number field.
<DT><A HREF="org/marc4j/marc/Tag.html#isDataField(java.lang.String)"><B>isDataField(String)</B></A> -
Static method in class org.marc4j.marc.<A HREF="org/marc4j/marc/Tag.html" title="class in org.marc4j.marc">Tag</A>
<DD>Returns true if the tag identifies a data field.
<DT><A HREF="org/marc4j/marc/Tag.html#isValid(java.lang.String)"><B>isValid(String)</B></A> -
Static method in class org.marc4j.marc.<A HREF="org/marc4j/marc/Tag.html" title="class in org.marc4j.marc">Tag</A>
<DD>Returns true if the given value is a valid tag value.
</DL>
<HR>
<A NAME="_L_"><!-- --></A><H2>
<B>L</B></H2>
<DL>
<DT><A HREF="org/marc4j/marc/Leader.html" title="class in org.marc4j.marc"><B>Leader</B></A> - class org.marc4j.marc.<A HREF="org/marc4j/marc/Leader.html" title="class in org.marc4j.marc">Leader</A>.<DD><code>Leader</code> defines behaviour for the record label
(record position 00-23). <DT><A HREF="org/marc4j/marc/Leader.html#Leader()"><B>Leader()</B></A> -
Constructor for class org.marc4j.marc.<A HREF="org/marc4j/marc/Leader.html" title="class in org.marc4j.marc">Leader</A>
<DD>
<DT><A HREF="org/marc4j/marc/Leader.html#Leader(java.lang.String)"><B>Leader(String)</B></A> -
Constructor for class org.marc4j.marc.<A HREF="org/marc4j/marc/Leader.html" title="class in org.marc4j.marc">Leader</A>
<DD>
<DT><A HREF="org/marc4j/marcxml/ExtendedFilter.html#lh"><B>lh</B></A> -
Variable in class org.marc4j.marcxml.<A HREF="org/marc4j/marcxml/ExtendedFilter.html" title="class in org.marc4j.marcxml">ExtendedFilter</A>
<DD>the lexical handler object
<DT><A HREF="org/marc4j/marcxml/MarcXmlReader.html#lh"><B>lh</B></A> -
Variable in class org.marc4j.marcxml.<A HREF="org/marc4j/marcxml/MarcXmlReader.html" title="class in org.marc4j.marcxml">MarcXmlReader</A>
<DD>the lexical handler object
<DT><A HREF="org/marc4j/util/AnselToUnicode.html#loadMultibyte()"><B>loadMultibyte()</B></A> -
Method in class org.marc4j.util.<A HREF="org/marc4j/util/AnselToUnicode.html" title="class in org.marc4j.util">AnselToUnicode</A>
<DD>Loads the entire maping (including multibyte characters) from the Library of Congress.
<DT><A HREF="org/marc4j/util/AnselToUnicode.html#loadedMultibyte"><B>loadedMultibyte</B></A> -
Variable in class org.marc4j.util.<A HREF="org/marc4j/util/AnselToUnicode.html" title="class in org.marc4j.util">AnselToUnicode</A>
<DD>
</DL>
<HR>
<A NAME="_M_"><!-- --></A><H2>
<B>M</B></H2>
<DL>
<DT><A HREF="org/marc4j/marc/MarcConstants.html" title="class in org.marc4j.marc"><B>MarcConstants</B></A> - class org.marc4j.marc.<A HREF="org/marc4j/marc/MarcConstants.html" title="class in org.marc4j.marc">MarcConstants</A>.<DD><code>MarcConstants</code> defines control characters
as used in a record. <DT><A HREF="org/marc4j/marc/MarcException.html" title="class in org.marc4j.marc"><B>MarcException</B></A> - exception org.marc4j.marc.<A HREF="org/marc4j/marc/MarcException.html" title="class in org.marc4j.marc">MarcException</A>.<DD><code>MarcException</code> is thrown when an error occurs
while processing a record object.<DT><A HREF="org/marc4j/marc/MarcException.html#MarcException()"><B>MarcException()</B></A> -
Constructor for class org.marc4j.marc.<A HREF="org/marc4j/marc/MarcException.html" title="class in org.marc4j.marc">MarcException</A>
<DD>Creates a new <code>MarcException</code>.
<DT><A HREF="org/marc4j/marc/MarcException.html#MarcException(java.lang.String)"><B>MarcException(String)</B></A> -
Constructor for class org.marc4j.marc.<A HREF="org/marc4j/marc/MarcException.html" title="class in org.marc4j.marc">MarcException</A>
<DD>Creates a new <code>MarcException</code> with the
specified message.
<DT><A HREF="org/marc4j/marc/MarcException.html#MarcException(java.lang.String, java.lang.Throwable)"><B>MarcException(String, Throwable)</B></A> -
Constructor for class org.marc4j.marc.<A HREF="org/marc4j/marc/MarcException.html" title="class in org.marc4j.marc">MarcException</A>
<DD>Creates a new <code>MarcException</code> with the
specified message and an underlying root cause.
<DT><A HREF="org/marc4j/MarcHandler.html" title="interface in org.marc4j"><B>MarcHandler</B></A> - interface org.marc4j.<A HREF="org/marc4j/MarcHandler.html" title="interface in org.marc4j">MarcHandler</A>.<DD>Defines Java callbacks to handle a collection of MARC records. <DT><A HREF="org/marc4j/MarcReader.html" title="class in org.marc4j"><B>MarcReader</B></A> - class org.marc4j.<A HREF="org/marc4j/MarcReader.html" title="class in org.marc4j">MarcReader</A>.<DD>Parses MARC records and reports events to the <code>MarcHandler</code>
and optionally the <code>ErrorHandler</code>. <DT><A HREF="org/marc4j/MarcReader.html#MarcReader()"><B>MarcReader()</B></A> -
Constructor for class org.marc4j.<A HREF="org/marc4j/MarcReader.html" title="class in org.marc4j">MarcReader</A>
<DD>
<DT><A HREF="org/marc4j/MarcReaderException.html" title="class in org.marc4j"><B>MarcReaderException</B></A> - exception org.marc4j.<A HREF="org/marc4j/MarcReaderException.html" title="class in org.marc4j">MarcReaderException</A>.<DD>A <code>MarcReaderException</code> thrown when an error occurs
while parsing MARC records. <DT><A HREF="org/marc4j/MarcReaderException.html#MarcReaderException(java.lang.String, int)"><B>MarcReaderException(String, int)</B></A> -
Constructor for class org.marc4j.<A HREF="org/marc4j/MarcReaderException.html" title="class in org.marc4j">MarcReaderException</A>
<DD>Creates an <code>Exception</code> indicating that an error
occured while parsing MARC records.
<DT><A HREF="org/marc4j/MarcReaderException.html#MarcReaderException(java.lang.String, java.lang.Throwable)"><B>MarcReaderException(String, Throwable)</B></A> -
Constructor for class org.marc4j.<A HREF="org/marc4j/MarcReaderException.html" title="class in org.marc4j">MarcReaderException</A>
<DD>Creates a new <code>MarcReaderException</code> with the
specified message and an underlying root cause.
<DT><A HREF="org/marc4j/MarcReaderException.html#MarcReaderException(java.lang.String, int, java.lang.String)"><B>MarcReaderException(String, int, String)</B></A> -
Constructor for class org.marc4j.<A HREF="org/marc4j/MarcReaderException.html" title="class in org.marc4j">MarcReaderException</A>
<DD>Creates an <code>Exception</code> indicating that an error
occured while parsing MARC records.
<DT><A HREF="org/marc4j/MarcReaderException.html#MarcReaderException(java.lang.String, java.lang.String, int, java.lang.String)"><B>MarcReaderException(String, String, int, String)</B></A> -
Constructor for class org.marc4j.<A HREF="org/marc4j/MarcReaderException.html" title="class in org.marc4j">MarcReaderException</A>
<DD>Creates an <code>Exception</code> indicating that an error
occured while parsing MARC records.
<DT><A HREF="org/marc4j/marcxml/MarcResult.html" title="class in org.marc4j.marcxml"><B>MarcResult</B></A> - class org.marc4j.marcxml.<A HREF="org/marc4j/marcxml/MarcResult.html" title="class in org.marc4j.marcxml">MarcResult</A>.<DD>Collects the result of a MARC conversion.<DT><A HREF="org/marc4j/marcxml/MarcResult.html#MarcResult()"><B>MarcResult()</B></A> -
Constructor for class org.marc4j.marcxml.<A HREF="org/marc4j/marcxml/MarcResult.html" title="class in org.marc4j.marcxml">MarcResult</A>
<DD>
<DT><A HREF="org/marc4j/marcxml/MarcResult.html#MarcResult(org.marc4j.MarcHandler)"><B>MarcResult(MarcHandler)</B></A> -
Constructor for class org.marc4j.marcxml.<A HREF="org/marc4j/marcxml/MarcResult.html" title="class in org.marc4j.marcxml">MarcResult</A>
<DD>Create a new instance and registers the MarcHandler
implementation.
<DT><A HREF="org/marc4j/marcxml/MarcSource.html" title="class in org.marc4j.marcxml"><B>MarcSource</B></A> - class org.marc4j.marcxml.<A HREF="org/marc4j/marcxml/MarcSource.html" title="class in org.marc4j.marcxml">MarcSource</A>.<DD><code>MarcSource</code> is a MARC input source for
non-MARCXML conversions.<DT><A HREF="org/marc4j/marcxml/MarcSource.html#MarcSource()"><B>MarcSource()</B></A> -
Constructor for class org.marc4j.marcxml.<A HREF="org/marc4j/marcxml/MarcSource.html" title="class in org.marc4j.marcxml">MarcSource</A>
<DD>Default constructor
<DT><A HREF="org/marc4j/marcxml/MarcSource.html#MarcSource(java.io.File)"><B>MarcSource(File)</B></A> -
Constructor for class org.marc4j.marcxml.<A HREF="org/marc4j/marcxml/MarcSource.html" title="class in org.marc4j.marcxml">MarcSource</A>
<DD>Create a new instance.
<DT><A HREF="org/marc4j/marcxml/MarcSource.html#MarcSource(org.marc4j.MarcReader, java.io.File)"><B>MarcSource(MarcReader, File)</B></A> -
Constructor for class org.marc4j.marcxml.<A HREF="org/marc4j/marcxml/MarcSource.html" title="class in org.marc4j.marcxml">MarcSource</A>
<DD>Create a new instance.
<DT><A HREF="org/marc4j/marcxml/MarcSource.html#MarcSource(java.io.InputStream)"><B>MarcSource(InputStream)</B></A> -
Constructor for class org.marc4j.marcxml.<A HREF="org/marc4j/marcxml/MarcSource.html" title="class in org.marc4j.marcxml">MarcSource</A>
<DD>Create a new instance.
<DT><A HREF="org/marc4j/marcxml/MarcSource.html#MarcSource(org.marc4j.MarcReader, java.io.InputStream)"><B>MarcSource(MarcReader, InputStream)</B></A> -
Constructor for class org.marc4j.marcxml.<A HREF="org/marc4j/marcxml/MarcSource.html" title="class in org.marc4j.marcxml">MarcSource</A>
<DD>Create a new instance.
<DT><A HREF="org/marc4j/marcxml/MarcSource.html#MarcSource(java.io.Reader)"><B>MarcSource(Reader)</B></A> -
Constructor for class org.marc4j.marcxml.<A HREF="org/marc4j/marcxml/MarcSource.html" title="class in org.marc4j.marcxml">MarcSource</A>
<DD>Create a new instance.
<DT><A HREF="org/marc4j/marcxml/MarcSource.html#MarcSource(org.marc4j.MarcReader, java.io.Reader)"><B>MarcSource(MarcReader, Reader)</B></A> -
Constructor for class org.marc4j.marcxml.<A HREF="org/marc4j/marcxml/MarcSource.html" title="class in org.marc4j.marcxml">MarcSource</A>
<DD>Create a new instance.
<DT><A HREF="org/marc4j/marcxml/MarcSource.html#MarcSource(java.lang.String)"><B>MarcSource(String)</B></A> -
Constructor for class org.marc4j.marcxml.<A HREF="org/marc4j/marcxml/MarcSource.html" title="class in org.marc4j.marcxml">MarcSource</A>
<DD>Create a new instance.
<DT><A HREF="org/marc4j/marcxml/MarcSource.html#MarcSource(org.marc4j.MarcReader, java.lang.String)"><B>MarcSource(MarcReader, String)</B></A> -
Constructor for class org.marc4j.marcxml.<A HREF="org/marc4j/marcxml/MarcSource.html" title="class in org.marc4j.marcxml">MarcSource</A>
<DD>Create a new instance.
<DT><A HREF="org/marc4j/util/MarcWriter.html" title="class in org.marc4j.util"><B>MarcWriter</B></A> - class org.marc4j.util.<A HREF="org/marc4j/util/MarcWriter.html" title="class in org.marc4j.util">MarcWriter</A>.<DD>Implements the <code>MarcHandler</code> interface
to write record objects to tape format (ISO 2709).<DT><A HREF="org/marc4j/util/MarcWriter.html#MarcWriter()"><B>MarcWriter()</B></A> -
Constructor for class org.marc4j.util.<A HREF="org/marc4j/util/MarcWriter.html" title="class in org.marc4j.util">MarcWriter</A>
<DD>Default constructor.
<DT><A HREF="org/marc4j/util/MarcWriter.html#MarcWriter(java.io.OutputStream)"><B>MarcWriter(OutputStream)</B></A> -
Constructor for class org.marc4j.util.<A HREF="org/marc4j/util/MarcWriter.html" title="class in org.marc4j.util">MarcWriter</A>
<DD>Creates a new instance.
<DT><A HREF="org/marc4j/util/MarcWriter.html#MarcWriter(java.io.OutputStream, java.lang.String)"><B>MarcWriter(OutputStream, String)</B></A> -
Constructor for class org.marc4j.util.<A HREF="org/marc4j/util/MarcWriter.html" title="class in org.marc4j.util">MarcWriter</A>
<DD>Creates a new instance.
<DT><A HREF="org/marc4j/util/MarcWriter.html#MarcWriter(java.io.Writer)"><B>MarcWriter(Writer)</B></A> -
Constructor for class org.marc4j.util.<A HREF="org/marc4j/util/MarcWriter.html" title="class in org.marc4j.util">MarcWriter</A>
<DD>Creates a new instance and registers the Writer object.
<DT><A HREF="org/marc4j/marcxml/MarcXmlFilter.html" title="class in org.marc4j.marcxml"><B>MarcXmlFilter</B></A> - class org.marc4j.marcxml.<A HREF="org/marc4j/marcxml/MarcXmlFilter.html" title="class in org.marc4j.marcxml">MarcXmlFilter</A>.<DD><B>Deprecated.</B> <I>This class has been replaced by
<A HREF="org/marc4j/marcxml/MarcXmlReader.html" title="class in org.marc4j.marcxml"><CODE>MarcXmlReader</CODE></A></I><DT><A HREF="org/marc4j/marcxml/MarcXmlFilter.html#MarcXmlFilter()"><B>MarcXmlFilter()</B></A> -
Constructor for class org.marc4j.marcxml.<A HREF="org/marc4j/marcxml/MarcXmlFilter.html" title="class in org.marc4j.marcxml">MarcXmlFilter</A>
<DD><B>Deprecated.</B>
<DT><A HREF="org/marc4j/marcxml/MarcXmlHandler.html" title="class in org.marc4j.marcxml"><B>MarcXmlHandler</B></A> - class org.marc4j.marcxml.<A HREF="org/marc4j/marcxml/MarcXmlHandler.html" title="class in org.marc4j.marcxml">MarcXmlHandler</A>.<DD><code>MarcXmlHandler</code> is a SAX2 <code>ContentHandler</code>
that reports events to the <code>MarcHandler</code> interface.<DT><A HREF="org/marc4j/marcxml/MarcXmlHandler.html#MarcXmlHandler()"><B>MarcXmlHandler()</B></A> -
Constructor for class org.marc4j.marcxml.<A HREF="org/marc4j/marcxml/MarcXmlHandler.html" title="class in org.marc4j.marcxml">MarcXmlHandler</A>
<DD>Construct a new default instance of the handler
<DT><A HREF="org/marc4j/marcxml/MarcXmlReader.html" title="class in org.marc4j.marcxml"><B>MarcXmlReader</B></A> - class org.marc4j.marcxml.<A HREF="org/marc4j/marcxml/MarcXmlReader.html" title="class in org.marc4j.marcxml">MarcXmlReader</A>.<DD><code>MarcXmlReader</code> is an <code>XMLReader</code> that
consumes <code>MarcHandler</code> events and reports events to
a SAX2 <code>ContentHandler</code>. <DT><A HREF="org/marc4j/marcxml/MarcXmlReader.html#MarcXmlReader()"><B>MarcXmlReader()</B></A> -
Constructor for class org.marc4j.marcxml.<A HREF="org/marc4j/marcxml/MarcXmlReader.html" title="class in org.marc4j.marcxml">MarcXmlReader</A>
<DD>
<DT><A HREF="org/marc4j/util/MarcXmlWriter.html" title="class in org.marc4j.util"><B>MarcXmlWriter</B></A> - class org.marc4j.util.<A HREF="org/marc4j/util/MarcXmlWriter.html" title="class in org.marc4j.util">MarcXmlWriter</A>.<DD>Provides a driver for <code>MarcXmlReader</code>
to convert MARC records to MARCXML or to a different format using
an XSLT stylesheet. <DT><A HREF="org/marc4j/util/MarcXmlWriter.html#MarcXmlWriter()"><B>MarcXmlWriter()</B></A> -
Constructor for class org.marc4j.util.<A HREF="org/marc4j/util/MarcXmlWriter.html" title="class in org.marc4j.util">MarcXmlWriter</A>
<DD>
<DT><A HREF="org/marc4j/util/CodeTableHandler.html#main(java.lang.String[])"><B>main(String[])</B></A> -
Static method in class org.marc4j.util.<A HREF="org/marc4j/util/CodeTableHandler.html" title="class in org.marc4j.util">CodeTableHandler</A>
<DD>
<DT><A HREF="org/marc4j/util/MarcXmlWriter.html#main(java.lang.String[])"><B>main(String[])</B></A> -
Static method in class org.marc4j.util.<A HREF="org/marc4j/util/MarcXmlWriter.html" title="class in org.marc4j.util">MarcXmlWriter</A>
<DD>Provides a static entry point.
<DT><A HREF="org/marc4j/util/ReverseCodeTableHandler.html#main(java.lang.String[])"><B>main(String[])</B></A> -
Static method in class org.marc4j.util.<A HREF="org/marc4j/util/ReverseCodeTableHandler.html" title="class in org.marc4j.util">ReverseCodeTableHandler</A>
<DD>
<DT><A HREF="org/marc4j/util/UnicodeToAnsel.html#main(java.lang.String[])"><B>main(String[])</B></A> -
Static method in class org.marc4j.util.<A HREF="org/marc4j/util/UnicodeToAnsel.html" title="class in org.marc4j.util">UnicodeToAnsel</A>
<DD>
<DT><A HREF="org/marc4j/util/XmlMarcWriter.html#main(java.lang.String[])"><B>main(String[])</B></A> -
Static method in class org.marc4j.util.<A HREF="org/marc4j/util/XmlMarcWriter.html" title="class in org.marc4j.util">XmlMarcWriter</A>
<DD>
<DT><A HREF="org/marc4j/util/CodeTableTracker.html#makePreviousCurrent()"><B>makePreviousCurrent()</B></A> -
Method in class org.marc4j.util.<A HREF="org/marc4j/util/CodeTableTracker.html" title="class in org.marc4j.util">CodeTableTracker</A>
<DD>
<DT><A HREF="org/marc4j/marc/Collection.html#marshal(java.io.Writer)"><B>marshal(Writer)</B></A> -
Method in class org.marc4j.marc.<A HREF="org/marc4j/marc/Collection.html" title="class in org.marc4j.marc">Collection</A>
<DD>Marshals all the records in the collection
and writes the tape format records to the Writer
object.
<DT><A HREF="org/marc4j/marc/ControlField.html#marshal()"><B>marshal()</B></A> -
Method in class org.marc4j.marc.<A HREF="org/marc4j/marc/ControlField.html" title="class in org.marc4j.marc">ControlField</A>
<DD>Returns a <code>String</code> representation for a control
field following the structure of a MARC control field.
<DT><A HREF="org/marc4j/marc/DataField.html#marshal()"><B>marshal()</B></A> -
Method in class org.marc4j.marc.<A HREF="org/marc4j/marc/DataField.html" title="class in org.marc4j.marc">DataField</A>
<DD>Returns a <code>String</code> representation for a data field
following the structure of a MARC data field.
<DT><A HREF="org/marc4j/marc/Directory.html#marshal()"><B>marshal()</B></A> -
Method in class org.marc4j.marc.<A HREF="org/marc4j/marc/Directory.html" title="class in org.marc4j.marc">Directory</A>
<DD>Returns a <code>String</code> representation for the directory
following the structure of the MARC directory.
<DT><A HREF="org/marc4j/marc/Leader.html#marshal()"><B>marshal()</B></A> -
Method in class org.marc4j.marc.<A HREF="org/marc4j/marc/Leader.html" title="class in org.marc4j.marc">Leader</A>
<DD>Returns a String representation of the record label
following the MARC structure.
<DT><A HREF="org/marc4j/marc/Record.html#marshal()"><B>marshal()</B></A> -
Method in class org.marc4j.marc.<A HREF="org/marc4j/marc/Record.html" title="class in org.marc4j.marc">Record</A>
<DD>Returns a <code>String</code> representation for a record
following the structure of a MARC record (tape format).
<DT><A HREF="org/marc4j/marc/Subfield.html#marshal()"><B>marshal()</B></A> -
Method in class org.marc4j.marc.<A HREF="org/marc4j/marc/Subfield.html" title="class in org.marc4j.marc">Subfield</A>
<DD>Returns a <code>String</code> representation for a data element
following the structure of a MARC data element.
</DL>
<HR>
<A NAME="_O_"><!-- --></A><H2>
<B>O</B></H2>
<DL>
<DT><A HREF="org/marc4j/package-summary.html"><B>org.marc4j</B></A> - package org.marc4j<DD>This package contains an event-based parser to process MARC records.<DT><A HREF="org/marc4j/helpers/package-summary.html"><B>org.marc4j.helpers</B></A> - package org.marc4j.helpers<DD>This package contains helper classes.<DT><A HREF="org/marc4j/marc/package-summary.html"><B>org.marc4j.marc</B></A> - package org.marc4j.marc<DD>This package contains a record object model to store and edit MARC records or parts of records as objects.<DT><A HREF="org/marc4j/marcxml/package-summary.html"><B>org.marc4j.marcxml</B></A> - package org.marc4j.marcxml<DD>This package contains SAX2 event consumers and producers to read and write MARCXML.<DT><A HREF="org/marc4j/util/package-summary.html"><B>org.marc4j.util</B></A> - package org.marc4j.util<DD>This package contains utilities.</DL>
<HR>
<A NAME="_P_"><!-- --></A><H2>
<B>P</B></H2>
<DL>
<DT><A HREF="org/marc4j/MarcReader.html#parse(java.lang.String)"><B>parse(String)</B></A> -
Method in class org.marc4j.<A HREF="org/marc4j/MarcReader.html" title="class in org.marc4j">MarcReader</A>
<DD>Sends a file to the MARC parser.
<DT><A HREF="org/marc4j/MarcReader.html#parse(java.io.InputStream)"><B>parse(InputStream)</B></A> -
Method in class org.marc4j.<A HREF="org/marc4j/MarcReader.html" title="class in org.marc4j">MarcReader</A>
<DD>Sends an input stream to the MARC parser.
<DT><A HREF="org/marc4j/MarcReader.html#parse(java.io.InputStreamReader)"><B>parse(InputStreamReader)</B></A> -
Method in class org.marc4j.<A HREF="org/marc4j/MarcReader.html" title="class in org.marc4j">MarcReader</A>
<DD>Sends an input stream reader to the MARC parser.
<DT><A HREF="org/marc4j/MarcReader.html#parse(java.io.Reader)"><B>parse(Reader)</B></A> -
Method in class org.marc4j.<A HREF="org/marc4j/MarcReader.html" title="class in org.marc4j">MarcReader</A>
<DD>
<DT><A HREF="org/marc4j/marcxml/MarcXmlFilter.html#parse(org.xml.sax.InputSource)"><B>parse(InputSource)</B></A> -
Method in class org.marc4j.marcxml.<A HREF="org/marc4j/marcxml/MarcXmlFilter.html" title="class in org.marc4j.marcxml">MarcXmlFilter</A>
<DD><B>Deprecated.</B> Sends the input source to the <code>MarcReader</code>.
<DT><A HREF="org/marc4j/marcxml/MarcXmlReader.html#parse(java.lang.String)"><B>parse(String)</B></A> -
Method in class org.marc4j.marcxml.<A HREF="org/marc4j/marcxml/MarcXmlReader.html" title="class in org.marc4j.marcxml">MarcXmlReader</A>
<DD>Parse input from a system identifier (URI).
<DT><A HREF="org/marc4j/marcxml/MarcXmlReader.html#parse(org.xml.sax.InputSource)"><B>parse(InputSource)</B></A> -
Method in class org.marc4j.marcxml.<A HREF="org/marc4j/marcxml/MarcXmlReader.html" title="class in org.marc4j.marcxml">MarcXmlReader</A>
<DD>Sends the input source to the <code>MarcReader</code>.
<DT><A HREF="org/marc4j/helpers/ErrorHandlerImpl.html#printMarcException(java.lang.String, org.marc4j.MarcReaderException)"><B>printMarcException(String, MarcReaderException)</B></A> -
Static method in class org.marc4j.helpers.<A HREF="org/marc4j/helpers/ErrorHandlerImpl.html" title="class in org.marc4j.helpers">ErrorHandlerImpl</A>
<DD>
<DT><A HREF="org/marc4j/marcxml/SaxErrorHandler.html#printParseException(java.lang.String, org.xml.sax.SAXParseException)"><B>printParseException(String, SAXParseException)</B></A> -
Static method in class org.marc4j.marcxml.<A HREF="org/marc4j/marcxml/SaxErrorHandler.html" title="class in org.marc4j.marcxml">SaxErrorHandler</A>
<DD>
</DL>
<HR>
<A NAME="_R_"><!-- --></A><H2>
<B>R</B></H2>
<DL>
<DT><A HREF="org/marc4j/marc/MarcConstants.html#RT"><B>RT</B></A> -
Static variable in class org.marc4j.marc.<A HREF="org/marc4j/marc/MarcConstants.html" title="class in org.marc4j.marc">MarcConstants</A>
<DD>RECORD TERMINATOR
<DT><A HREF="org/marc4j/marc/Record.html" title="class in org.marc4j.marc"><B>Record</B></A> - class org.marc4j.marc.<A HREF="org/marc4j/marc/Record.html" title="class in org.marc4j.marc">Record</A>.<DD><code>Record</code> defines behaviour for a record. <DT><A HREF="org/marc4j/marc/Record.html#Record()"><B>Record()</B></A> -
Constructor for class org.marc4j.marc.<A HREF="org/marc4j/marc/Record.html" title="class in org.marc4j.marc">Record</A>
<DD>Default constructor.
<DT><A HREF="org/marc4j/marc/Record.html#Record(org.marc4j.marc.Leader)"><B>Record(Leader)</B></A> -
Constructor for class org.marc4j.marc.<A HREF="org/marc4j/marc/Record.html" title="class in org.marc4j.marc">Record</A>
<DD>Creates a new instance for a record and registers the
leader.
<DT><A HREF="org/marc4j/helpers/RecordBuilder.html" title="class in org.marc4j.helpers"><B>RecordBuilder</B></A> - class org.marc4j.helpers.<A HREF="org/marc4j/helpers/RecordBuilder.html" title="class in org.marc4j.helpers">RecordBuilder</A>.<DD>Creates record objects from <code>MarcHandler</code> events and reports
events to the <code>RecordHandler</code>. <DT><A HREF="org/marc4j/helpers/RecordBuilder.html#RecordBuilder()"><B>RecordBuilder()</B></A> -
Constructor for class org.marc4j.helpers.<A HREF="org/marc4j/helpers/RecordBuilder.html" title="class in org.marc4j.helpers">RecordBuilder</A>
<DD>
<DT><A HREF="org/marc4j/helpers/RecordHandler.html" title="interface in org.marc4j.helpers"><B>RecordHandler</B></A> - interface org.marc4j.helpers.<A HREF="org/marc4j/helpers/RecordHandler.html" title="interface in org.marc4j.helpers">RecordHandler</A>.<DD>Defines a set of Java callbacks to handle <code>Record</code>
objects. <DT><A HREF="org/marc4j/util/ReverseCodeTable.html" title="class in org.marc4j.util"><B>ReverseCodeTable</B></A> - class org.marc4j.util.<A HREF="org/marc4j/util/ReverseCodeTable.html" title="class in org.marc4j.util">ReverseCodeTable</A>.<DD><code>ReverseCodeTable</code> defines a data structure to facilitate UnicodeToAnsel character conversion. <DT><A HREF="org/marc4j/util/ReverseCodeTable.html#ReverseCodeTable(java.io.InputStream)"><B>ReverseCodeTable(InputStream)</B></A> -
Constructor for class org.marc4j.util.<A HREF="org/marc4j/util/ReverseCodeTable.html" title="class in org.marc4j.util">ReverseCodeTable</A>
<DD>
<DT><A HREF="org/marc4j/util/ReverseCodeTable.html#ReverseCodeTable(java.lang.String)"><B>ReverseCodeTable(String)</B></A> -
Constructor for class org.marc4j.util.<A HREF="org/marc4j/util/ReverseCodeTable.html" title="class in org.marc4j.util">ReverseCodeTable</A>
<DD>
<DT><A HREF="org/marc4j/util/ReverseCodeTable.html#ReverseCodeTable(java.net.URI)"><B>ReverseCodeTable(URI)</B></A> -
Constructor for class org.marc4j.util.<A HREF="org/marc4j/util/ReverseCodeTable.html" title="class in org.marc4j.util">ReverseCodeTable</A>
<DD>
<DT><A HREF="org/marc4j/util/ReverseCodeTableHandler.html" title="class in org.marc4j.util"><B>ReverseCodeTableHandler</B></A> - class org.marc4j.util.<A HREF="org/marc4j/util/ReverseCodeTableHandler.html" title="class in org.marc4j.util">ReverseCodeTableHandler</A>.<DD><code>ReverseCodeTableHandler</code> is a SAX2 <code>ContentHandler</code>
that builds a data structure to facilitate <code>UnicodeToAnsel</code> character conversion.<DT><A HREF="org/marc4j/util/ReverseCodeTableHandler.html#ReverseCodeTableHandler()"><B>ReverseCodeTableHandler()</B></A> -
Constructor for class org.marc4j.util.<A HREF="org/marc4j/util/ReverseCodeTableHandler.html" title="class in org.marc4j.util">ReverseCodeTableHandler</A>
<DD>
<DT><A HREF="org/marc4j/util/UnicodeToAnsel.html#rct"><B>rct</B></A> -
Variable in class org.marc4j.util.<A HREF="org/marc4j/util/UnicodeToAnsel.html" title="class in org.marc4j.util">UnicodeToAnsel</A>
<DD>
<DT><A HREF="org/marc4j/helpers/RecordHandler.html#record(org.marc4j.marc.Record)"><B>record(Record)</B></A> -
Method in interface org.marc4j.helpers.<A HREF="org/marc4j/helpers/RecordHandler.html" title="interface in org.marc4j.helpers">RecordHandler</A>
<DD>Receives notification when a record is parsed.
</DL>
<HR>
<A NAME="_S_"><!-- --></A><H2>
<B>S</B></H2>
<DL>
<DT><A HREF="org/marc4j/marcxml/SaxErrorHandler.html" title="class in org.marc4j.marcxml"><B>SaxErrorHandler</B></A> - class org.marc4j.marcxml.<A HREF="org/marc4j/marcxml/SaxErrorHandler.html" title="class in org.marc4j.marcxml">SaxErrorHandler</A>.<DD><code>SaxErrorHandler</code> is a SAX2 <code>ErrorHandler</code>
implementation. <DT><A HREF="org/marc4j/marcxml/SaxErrorHandler.html#SaxErrorHandler()"><B>SaxErrorHandler()</B></A> -
Constructor for class org.marc4j.marcxml.<A HREF="org/marc4j/marcxml/SaxErrorHandler.html" title="class in org.marc4j.marcxml">SaxErrorHandler</A>
<DD>
<DT><A HREF="org/marc4j/marcxml/SaxErrorHandler.html#SaxErrorHandler(int)"><B>SaxErrorHandler(int)</B></A> -
Constructor for class org.marc4j.marcxml.<A HREF="org/marc4j/marcxml/SaxErrorHandler.html" title="class in org.marc4j.marcxml">SaxErrorHandler</A>
<DD>
<DT><A HREF="org/marc4j/marc/Subfield.html" title="class in org.marc4j.marc"><B>Subfield</B></A> - class org.marc4j.marc.<A HREF="org/marc4j/marc/Subfield.html" title="class in org.marc4j.marc">Subfield</A>.<DD><code>Subfield</code> defines behaviour for a subfield (a data
element within a data field). <DT><A HREF="org/marc4j/marc/Subfield.html#Subfield()"><B>Subfield()</B></A> -
Constructor for class org.marc4j.marc.<A HREF="org/marc4j/marc/Subfield.html" title="class in org.marc4j.marc">Subfield</A>
<DD>Default constructor
<DT><A HREF="org/marc4j/marc/Subfield.html#Subfield(char, char[])"><B>Subfield(char, char[])</B></A> -
Constructor for class org.marc4j.marc.<A HREF="org/marc4j/marc/Subfield.html" title="class in org.marc4j.marc">Subfield</A>
<DD>Creates a new <code>Subfield</code> instance and registers the
data element identifier and the data element.
<DT><A HREF="org/marc4j/marc/Subfield.html#Subfield(char, java.lang.String)"><B>Subfield(char, String)</B></A> -
Constructor for class org.marc4j.marc.<A HREF="org/marc4j/marc/Subfield.html" title="class in org.marc4j.marc">Subfield</A>
<DD>Creates a new <code>Subfield</code> instance and registers the
data element identifier and the data element.
<DT><A HREF="org/marc4j/marc/Leader.html#setBaseAddressOfData(int)"><B>setBaseAddressOfData(int)</B></A> -
Method in class org.marc4j.marc.<A HREF="org/marc4j/marc/Leader.html" title="class in org.marc4j.marc">Leader</A>
<DD>Registers the base address of data (positions 12-16).
<DT><A HREF="org/marc4j/marc/Leader.html#setCharCodingScheme(char)"><B>setCharCodingScheme(char)</B></A> -
Method in class org.marc4j.marc.<A HREF="org/marc4j/marc/Leader.html" title="class in org.marc4j.marc">Leader</A>
<DD>Registers the character encoding scheme
(position 09).
<DT><A HREF="org/marc4j/util/MarcWriter.html#setCharacterConverter(org.marc4j.util.CharacterConverter)"><B>setCharacterConverter(CharacterConverter)</B></A> -
Method in class org.marc4j.util.<A HREF="org/marc4j/util/MarcWriter.html" title="class in org.marc4j.util">MarcWriter</A>
<DD>Sets the character conversion table.
<DT><A HREF="org/marc4j/marc/Subfield.html#setCode(char)"><B>setCode(char)</B></A> -
Method in class org.marc4j.marc.<A HREF="org/marc4j/marc/Subfield.html" title="class in org.marc4j.marc">Subfield</A>
<DD>Registers the data element identifier.
<DT><A HREF="org/marc4j/marcxml/MarcXmlReader.html#setContentHandler(org.xml.sax.ContentHandler)"><B>setContentHandler(ContentHandler)</B></A> -
Method in class org.marc4j.marcxml.<A HREF="org/marc4j/marcxml/MarcXmlReader.html" title="class in org.marc4j.marcxml">MarcXmlReader</A>
<DD>Sets the content handler.
<DT><A HREF="org/marc4j/marc/Record.html#setControlFieldList(java.util.List)"><B>setControlFieldList(List)</B></A> -
Method in class org.marc4j.marc.<A HREF="org/marc4j/marc/Record.html" title="class in org.marc4j.marc">Record</A>
<DD>Sets the collection of control fields.
<DT><A HREF="org/marc4j/util/CodeTableTracker.html#setCurrent(byte, java.lang.Integer)"><B>setCurrent(byte, Integer)</B></A> -
Method in class org.marc4j.util.<A HREF="org/marc4j/util/CodeTableTracker.html" title="class in org.marc4j.util">CodeTableTracker</A>
<DD>
<DT><A HREF="org/marc4j/marcxml/MarcXmlReader.html#setDTDHandler(org.xml.sax.DTDHandler)"><B>setDTDHandler(DTDHandler)</B></A> -
Method in class org.marc4j.marcxml.<A HREF="org/marc4j/marcxml/MarcXmlReader.html" title="class in org.marc4j.marcxml">MarcXmlReader</A>
<DD>Not supported.
<DT><A HREF="org/marc4j/marc/ControlField.html#setData(char[])"><B>setData(char[])</B></A> -
Method in class org.marc4j.marc.<A HREF="org/marc4j/marc/ControlField.html" title="class in org.marc4j.marc">ControlField</A>
<DD>Registers the control field data.
<DT><A HREF="org/marc4j/marc/ControlField.html#setData(java.lang.String)"><B>setData(String)</B></A> -
Method in class org.marc4j.marc.<A HREF="org/marc4j/marc/ControlField.html" title="class in org.marc4j.marc">ControlField</A>
<DD>Registers the control field data.
<DT><A HREF="org/marc4j/marc/Subfield.html#setData(char[])"><B>setData(char[])</B></A> -
Method in class org.marc4j.marc.<A HREF="org/marc4j/marc/Subfield.html" title="class in org.marc4j.marc">Subfield</A>
<DD>Registers the data element.
<DT><A HREF="org/marc4j/marc/Subfield.html#setData(java.lang.String)"><B>setData(String)</B></A> -
Method in class org.marc4j.marc.<A HREF="org/marc4j/marc/Subfield.html" title="class in org.marc4j.marc">Subfield</A>
<DD>Registers the data element.
<DT><A HREF="org/marc4j/marc/Record.html#setDataFieldList(java.util.List)"><B>setDataFieldList(List)</B></A> -
Method in class org.marc4j.marc.<A HREF="org/marc4j/marc/Record.html" title="class in org.marc4j.marc">Record</A>
<DD>Sets the collection of data fields.
<DT><A HREF="org/marc4j/marcxml/MarcXmlHandler.html#setDocumentLocator(org.xml.sax.Locator)"><B>setDocumentLocator(Locator)</B></A> -
Method in class org.marc4j.marcxml.<A HREF="org/marc4j/marcxml/MarcXmlHandler.html" title="class in org.marc4j.marcxml">MarcXmlHandler</A>
<DD>Registers the SAX2 <code>Locator</code> object.
<DT><A HREF="org/marc4j/util/CodeTableHandler.html#setDocumentLocator(org.xml.sax.Locator)"><B>setDocumentLocator(Locator)</B></A> -
Method in class org.marc4j.util.<A HREF="org/marc4j/util/CodeTableHandler.html" title="class in org.marc4j.util">CodeTableHandler</A>
<DD>Registers the SAX2 <code>Locator</code> object.
<DT><A HREF="org/marc4j/util/ReverseCodeTableHandler.html#setDocumentLocator(org.xml.sax.Locator)"><B>setDocumentLocator(Locator)</B></A> -
Method in class org.marc4j.util.<A HREF="org/marc4j/util/ReverseCodeTableHandler.html" title="class in org.marc4j.util">ReverseCodeTableHandler</A>
<DD>Registers the SAX2 <code>Locator</code> object.
<DT><A HREF="org/marc4j/marcxml/MarcXmlReader.html#setEntityResolver(org.xml.sax.EntityResolver)"><B>setEntityResolver(EntityResolver)</B></A> -
Method in class org.marc4j.marcxml.<A HREF="org/marc4j/marcxml/MarcXmlReader.html" title="class in org.marc4j.marcxml">MarcXmlReader</A>
<DD>Not supported.
<DT><A HREF="org/marc4j/marc/Leader.html#setEntryMap(char[])"><B>setEntryMap(char[])</B></A> -
Method in class org.marc4j.marc.<A HREF="org/marc4j/marc/Leader.html" title="class in org.marc4j.marc">Leader</A>
<DD>Registers the entry map (positions 20-23).
<DT><A HREF="org/marc4j/MarcReader.html#setErrorHandler(org.marc4j.ErrorHandler)"><B>setErrorHandler(ErrorHandler)</B></A> -
Method in class org.marc4j.<A HREF="org/marc4j/MarcReader.html" title="class in org.marc4j">MarcReader</A>
<DD>Registers the <code>ErrorHandler</code> implementation.
<DT><A HREF="org/marc4j/marcxml/MarcXmlReader.html#setErrorHandler(org.xml.sax.ErrorHandler)"><B>setErrorHandler(ErrorHandler)</B></A> -
Method in class org.marc4j.marcxml.<A HREF="org/marc4j/marcxml/MarcXmlReader.html" title="class in org.marc4j.marcxml">MarcXmlReader</A>
<DD>Not supported.
<DT><A HREF="org/marc4j/marcxml/MarcXmlFilter.html#setFeature(java.lang.String, boolean)"><B>setFeature(String, boolean)</B></A> -
Method in class org.marc4j.marcxml.<A HREF="org/marc4j/marcxml/MarcXmlFilter.html" title="class in org.marc4j.marcxml">MarcXmlFilter</A>
<DD><B>Deprecated.</B> Sets the boolean for the feature with the given name.
<DT><A HREF="org/marc4j/marcxml/MarcXmlReader.html#setFeature(java.lang.String, boolean)"><B>setFeature(String, boolean)</B></A> -
Method in class org.marc4j.marcxml.<A HREF="org/marc4j/marcxml/MarcXmlReader.html" title="class in org.marc4j.marcxml">MarcXmlReader</A>
<DD>Sets the boolean for the feature with the given name.
<DT><A HREF="org/marc4j/marcxml/MarcResult.html#setHandler(org.marc4j.MarcHandler)"><B>setHandler(MarcHandler)</B></A> -
Method in class org.marc4j.marcxml.<A HREF="org/marc4j/marcxml/MarcResult.html" title="class in org.marc4j.marcxml">MarcResult</A>
<DD>Registers the MarcHandler implementation.
<DT><A HREF="org/marc4j/marc/Leader.html#setImplDefined1(char[])"><B>setImplDefined1(char[])</B></A> -
Method in class org.marc4j.marc.<A HREF="org/marc4j/marc/Leader.html" title="class in org.marc4j.marc">Leader</A>
<DD>Registers implementation defined values (position 07-08).
<DT><A HREF="org/marc4j/marc/Leader.html#setImplDefined2(char[])"><B>setImplDefined2(char[])</B></A> -
Method in class org.marc4j.marc.<A HREF="org/marc4j/marc/Leader.html" title="class in org.marc4j.marc">Leader</A>
<DD>Registers implementation defined values (positions 17-19).
<DT><A HREF="org/marc4j/marc/DataField.html#setIndicator1(char)"><B>setIndicator1(char)</B></A> -
Method in class org.marc4j.marc.<A HREF="org/marc4j/marc/DataField.html" title="class in org.marc4j.marc">DataField</A>
<DD>Registers the first indicator value.
<DT><A HREF="org/marc4j/marc/DataField.html#setIndicator2(char)"><B>setIndicator2(char)</B></A> -
Method in class org.marc4j.marc.<A HREF="org/marc4j/marc/DataField.html" title="class in org.marc4j.marc">DataField</A>
<DD>Registers the second indicator value.
<DT><A HREF="org/marc4j/marc/Leader.html#setIndicatorCount(int)"><B>setIndicatorCount(int)</B></A> -
Method in class org.marc4j.marc.<A HREF="org/marc4j/marc/Leader.html" title="class in org.marc4j.marc">Leader</A>
<DD>Registers the indicator count (position 10).
<DT><A HREF="org/marc4j/marcxml/MarcSource.html#setInputStream(java.io.InputStream)"><B>setInputStream(InputStream)</B></A> -
Method in class org.marc4j.marcxml.<A HREF="org/marc4j/marcxml/MarcSource.html" title="class in org.marc4j.marcxml">MarcSource</A>
<DD>Sets the InputStream object.
<DT><A HREF="org/marc4j/MarcReader.html#setMarcHandler(org.marc4j.MarcHandler)"><B>setMarcHandler(MarcHandler)</B></A> -
Method in class org.marc4j.<A HREF="org/marc4j/MarcReader.html" title="class in org.marc4j">MarcReader</A>
<DD>Registers the <code>MarcHandler</code> implementation.
<DT><A HREF="org/marc4j/marcxml/MarcXmlHandler.html#setMarcHandler(org.marc4j.MarcHandler)"><B>setMarcHandler(MarcHandler)</B></A> -
Method in class org.marc4j.marcxml.<A HREF="org/marc4j/marcxml/MarcXmlHandler.html" title="class in org.marc4j.marcxml">MarcXmlHandler</A>
<DD>Registers the <code>MarcHandler</code> object.
<DT><A HREF="org/marc4j/marcxml/MarcSource.html#setMarcReader(org.marc4j.MarcReader)"><B>setMarcReader(MarcReader)</B></A> -
Method in class org.marc4j.marcxml.<A HREF="org/marc4j/marcxml/MarcSource.html" title="class in org.marc4j.marcxml">MarcSource</A>
<DD>Sets the MarcReader object.
<DT><A HREF="org/marc4j/marcxml/DoctypeDecl.html#setName(java.lang.String)"><B>setName(String)</B></A> -
Method in class org.marc4j.marcxml.<A HREF="org/marc4j/marcxml/DoctypeDecl.html" title="class in org.marc4j.marcxml">DoctypeDecl</A>
<DD>Sets the name of the root element.
<DT><A HREF="org/marc4j/util/CodeTableTracker.html#setNext(byte, java.lang.Integer)"><B>setNext(byte, Integer)</B></A> -
Method in class org.marc4j.util.<A HREF="org/marc4j/util/CodeTableTracker.html" title="class in org.marc4j.util">CodeTableTracker</A>
<DD>
<DT><A HREF="org/marc4j/util/CodeTableTracker.html#setPrevious(byte, java.lang.Integer)"><B>setPrevious(byte, Integer)</B></A> -
Method in class org.marc4j.util.<A HREF="org/marc4j/util/CodeTableTracker.html" title="class in org.marc4j.util">CodeTableTracker</A>
<DD>
<DT><A HREF="org/marc4j/marcxml/ExtendedFilter.html#setProperty(java.lang.String, java.lang.Object)"><B>setProperty(String, Object)</B></A> -
Method in class org.marc4j.marcxml.<A HREF="org/marc4j/marcxml/ExtendedFilter.html" title="class in org.marc4j.marcxml">ExtendedFilter</A>
<DD>Sets the object for the given property.
<DT><A HREF="org/marc4j/marcxml/MarcXmlFilter.html#setProperty(java.lang.String, java.lang.Object)"><B>setProperty(String, Object)</B></A> -
Method in class org.marc4j.marcxml.<A HREF="org/marc4j/marcxml/MarcXmlFilter.html" title="class in org.marc4j.marcxml">MarcXmlFilter</A>
<DD><B>Deprecated.</B> Sets the object for the given property.
<DT><A HREF="org/marc4j/marcxml/MarcXmlReader.html#setProperty(java.lang.String, java.lang.Object)"><B>setProperty(String, Object)</B></A> -
Method in class org.marc4j.marcxml.<A HREF="org/marc4j/marcxml/MarcXmlReader.html" title="class in org.marc4j.marcxml">MarcXmlReader</A>
<DD>Sets the object for the given property.
<DT><A HREF="org/marc4j/marcxml/DoctypeDecl.html#setPublicId(java.lang.String)"><B>setPublicId(String)</B></A> -
Method in class org.marc4j.marcxml.<A HREF="org/marc4j/marcxml/DoctypeDecl.html" title="class in org.marc4j.marcxml">DoctypeDecl</A>
<DD>Sets the public identifier.
<DT><A HREF="org/marc4j/marcxml/MarcSource.html#setPublicId(java.lang.String)"><B>setPublicId(String)</B></A> -
Method in class org.marc4j.marcxml.<A HREF="org/marc4j/marcxml/MarcSource.html" title="class in org.marc4j.marcxml">MarcSource</A>
<DD>Sets the public identifier.
<DT><A HREF="org/marc4j/marcxml/MarcSource.html#setReader(java.io.Reader)"><B>setReader(Reader)</B></A> -
Method in class org.marc4j.marcxml.<A HREF="org/marc4j/marcxml/MarcSource.html" title="class in org.marc4j.marcxml">MarcSource</A>
<DD>Sets the Reader object.
<DT><A HREF="org/marc4j/helpers/RecordBuilder.html#setRecordHandler(org.marc4j.helpers.RecordHandler)"><B>setRecordHandler(RecordHandler)</B></A> -
Method in class org.marc4j.helpers.<A HREF="org/marc4j/helpers/RecordBuilder.html" title="class in org.marc4j.helpers">RecordBuilder</A>
<DD>Registers the <code>RecordHandler</code> object.
<DT><A HREF="org/marc4j/marc/Leader.html#setRecordLength(int)"><B>setRecordLength(int)</B></A> -
Method in class org.marc4j.marc.<A HREF="org/marc4j/marc/Leader.html" title="class in org.marc4j.marc">Leader</A>
<DD>Registers the logical record length (positions 00-04).
<DT><A HREF="org/marc4j/marc/Leader.html#setRecordStatus(char)"><B>setRecordStatus(char)</B></A> -
Method in class org.marc4j.marc.<A HREF="org/marc4j/marc/Leader.html" title="class in org.marc4j.marc">Leader</A>
<DD>Registers the record status (position 05).
<DT><A HREF="org/marc4j/marc/Leader.html#setSubfieldCodeLength(int)"><B>setSubfieldCodeLength(int)</B></A> -
Method in class org.marc4j.marc.<A HREF="org/marc4j/marc/Leader.html" title="class in org.marc4j.marc">Leader</A>
<DD>Registers the subfield code length (position 11).
<DT><A HREF="org/marc4j/marc/DataField.html#setSubfieldList(java.util.List)"><B>setSubfieldList(List)</B></A> -
Method in class org.marc4j.marc.<A HREF="org/marc4j/marc/DataField.html" title="class in org.marc4j.marc">DataField</A>
<DD>Sets the collection of data elements.
<DT><A HREF="org/marc4j/marcxml/DoctypeDecl.html#setSystemId(java.lang.String)"><B>setSystemId(String)</B></A> -
Method in class org.marc4j.marcxml.<A HREF="org/marc4j/marcxml/DoctypeDecl.html" title="class in org.marc4j.marcxml">DoctypeDecl</A>
<DD>Sets the system identifier.
<DT><A HREF="org/marc4j/marcxml/MarcResult.html#setSystemId(java.lang.String)"><B>setSystemId(String)</B></A> -
Method in class org.marc4j.marcxml.<A HREF="org/marc4j/marcxml/MarcResult.html" title="class in org.marc4j.marcxml">MarcResult</A>
<DD>Registers the systemID.
<DT><A HREF="org/marc4j/marcxml/MarcSource.html#setSystemId(java.io.File)"><B>setSystemId(File)</B></A> -
Method in class org.marc4j.marcxml.<A HREF="org/marc4j/marcxml/MarcSource.html" title="class in org.marc4j.marcxml">MarcSource</A>
<DD>Sets the File object.
<DT><A HREF="org/marc4j/marcxml/MarcSource.html#setSystemId(java.lang.String)"><B>setSystemId(String)</B></A> -
Method in class org.marc4j.marcxml.<A HREF="org/marc4j/marcxml/MarcSource.html" title="class in org.marc4j.marcxml">MarcSource</A>
<DD>Sets the system identifier.
<DT><A HREF="org/marc4j/marc/ControlField.html#setTag(java.lang.String)"><B>setTag(String)</B></A> -
Method in class org.marc4j.marc.<A HREF="org/marc4j/marc/ControlField.html" title="class in org.marc4j.marc">ControlField</A>
<DD>Registers the tag.
<DT><A HREF="org/marc4j/marc/DataField.html#setTag(java.lang.String)"><B>setTag(String)</B></A> -
Method in class org.marc4j.marc.<A HREF="org/marc4j/marc/DataField.html" title="class in org.marc4j.marc">DataField</A>
<DD>Registers the tag.
<DT><A HREF="org/marc4j/marc/VariableField.html#setTag(java.lang.String)"><B>setTag(String)</B></A> -
Method in class org.marc4j.marc.<A HREF="org/marc4j/marc/VariableField.html" title="class in org.marc4j.marc">VariableField</A>
<DD>Registers the tag name.
<DT><A HREF="org/marc4j/marc/Leader.html#setTypeOfRecord(char)"><B>setTypeOfRecord(char)</B></A> -
Method in class org.marc4j.marc.<A HREF="org/marc4j/marc/Leader.html" title="class in org.marc4j.marc">Leader</A>
<DD>Registers the type of record (position 06).
<DT><A HREF="org/marc4j/util/MarcWriter.html#setUnicodeToAnsel(boolean)"><B>setUnicodeToAnsel(boolean)</B></A> -
Method in class org.marc4j.util.<A HREF="org/marc4j/util/MarcWriter.html" title="class in org.marc4j.util">MarcWriter</A>
<DD><B>Deprecated.</B> <I>As of MARC4J beta 7 replaced by <A HREF="org/marc4j/util/MarcWriter.html#setCharacterConverter(org.marc4j.util.CharacterConverter)"><CODE>MarcWriter.setCharacterConverter(CharacterConverter charconv)</CODE></A></I>
<DT><A HREF="org/marc4j/marc/Record.html#setVariableFieldList(java.util.List)"><B>setVariableFieldList(List)</B></A> -
Method in class org.marc4j.marc.<A HREF="org/marc4j/marc/Record.html" title="class in org.marc4j.marc">Record</A>
<DD>Sets the collection of variable fields.
<DT><A HREF="org/marc4j/util/MarcWriter.html#setWriter(java.io.Writer)"><B>setWriter(Writer)</B></A> -
Method in class org.marc4j.util.<A HREF="org/marc4j/util/MarcWriter.html" title="class in org.marc4j.util">MarcWriter</A>
<DD>Registers the Writer object.
<DT><A HREF="org/marc4j/util/MarcWriter.html#setWriter(java.io.Writer, boolean)"><B>setWriter(Writer, boolean)</B></A> -
Method in class org.marc4j.util.<A HREF="org/marc4j/util/MarcWriter.html" title="class in org.marc4j.util">MarcWriter</A>
<DD>Registers the Writer object.
<DT><A HREF="org/marc4j/util/TaggedWriter.html#setWriter(java.io.Writer)"><B>setWriter(Writer)</B></A> -
Method in class org.marc4j.util.<A HREF="org/marc4j/util/TaggedWriter.html" title="class in org.marc4j.util">TaggedWriter</A>
<DD>Registers the Writer object.
<DT><A HREF="org/marc4j/marcxml/ExtendedFilter.html#startCDATA()"><B>startCDATA()</B></A> -
Method in class org.marc4j.marcxml.<A HREF="org/marc4j/marcxml/ExtendedFilter.html" title="class in org.marc4j.marcxml">ExtendedFilter</A>
<DD>
<DT><A HREF="org/marc4j/MarcHandler.html#startCollection()"><B>startCollection()</B></A> -
Method in interface org.marc4j.<A HREF="org/marc4j/MarcHandler.html" title="interface in org.marc4j">MarcHandler</A>
<DD>Receives notification at the start of the collection.
<DT><A HREF="org/marc4j/helpers/DefaultHandler.html#startCollection()"><B>startCollection()</B></A> -
Method in class org.marc4j.helpers.<A HREF="org/marc4j/helpers/DefaultHandler.html" title="class in org.marc4j.helpers">DefaultHandler</A>
<DD>
<DT><A HREF="org/marc4j/helpers/RecordBuilder.html#startCollection()"><B>startCollection()</B></A> -
Method in class org.marc4j.helpers.<A HREF="org/marc4j/helpers/RecordBuilder.html" title="class in org.marc4j.helpers">RecordBuilder</A>
<DD>Reports the start of the file.
<DT><A HREF="org/marc4j/helpers/RecordHandler.html#startCollection()"><B>startCollection()</B></A> -
Method in interface org.marc4j.helpers.<A HREF="org/marc4j/helpers/RecordHandler.html" title="interface in org.marc4j.helpers">RecordHandler</A>
<DD>Receives notification at the start of the collection.
<DT><A HREF="org/marc4j/marcxml/MarcXmlFilter.html#startCollection()"><B>startCollection()</B></A> -
Method in class org.marc4j.marcxml.<A HREF="org/marc4j/marcxml/MarcXmlFilter.html" title="class in org.marc4j.marcxml">MarcXmlFilter</A>
<DD><B>Deprecated.</B> Returns the document handler being used, starts the document
and reports the root element.
<DT><A HREF="org/marc4j/marcxml/MarcXmlReader.html#startCollection()"><B>startCollection()</B></A> -
Method in class org.marc4j.marcxml.<A HREF="org/marc4j/marcxml/MarcXmlReader.html" title="class in org.marc4j.marcxml">MarcXmlReader</A>
<DD>Returns the document handler being used, starts the document
and reports the root element.
<DT><A HREF="org/marc4j/util/MarcWriter.html#startCollection()"><B>startCollection()</B></A> -
Method in class org.marc4j.util.<A HREF="org/marc4j/util/MarcWriter.html" title="class in org.marc4j.util">MarcWriter</A>
<DD>System exits when the Writer object is null.
<DT><A HREF="org/marc4j/util/TaggedWriter.html#startCollection()"><B>startCollection()</B></A> -
Method in class org.marc4j.util.<A HREF="org/marc4j/util/TaggedWriter.html" title="class in org.marc4j.util">TaggedWriter</A>
<DD>System exits when the Writer object is null.
<DT><A HREF="org/marc4j/marcxml/ExtendedFilter.html#startDTD(java.lang.String, java.lang.String, java.lang.String)"><B>startDTD(String, String, String)</B></A> -
Method in class org.marc4j.marcxml.<A HREF="org/marc4j/marcxml/ExtendedFilter.html" title="class in org.marc4j.marcxml">ExtendedFilter</A>
<DD>
<DT><A HREF="org/marc4j/MarcHandler.html#startDataField(java.lang.String, char, char)"><B>startDataField(String, char, char)</B></A> -
Method in interface org.marc4j.<A HREF="org/marc4j/MarcHandler.html" title="interface in org.marc4j">MarcHandler</A>
<DD>Receives notification at the start of each data field.
<DT><A HREF="org/marc4j/helpers/DefaultHandler.html#startDataField(java.lang.String, char, char)"><B>startDataField(String, char, char)</B></A> -
Method in class org.marc4j.helpers.<A HREF="org/marc4j/helpers/DefaultHandler.html" title="class in org.marc4j.helpers">DefaultHandler</A>
<DD>
<DT><A HREF="org/marc4j/helpers/RecordBuilder.html#startDataField(java.lang.String, char, char)"><B>startDataField(String, char, char)</B></A> -
Method in class org.marc4j.helpers.<A HREF="org/marc4j/helpers/RecordBuilder.html" title="class in org.marc4j.helpers">RecordBuilder</A>
<DD>Creates a new data field object.
<DT><A HREF="org/marc4j/marcxml/MarcXmlFilter.html#startDataField(java.lang.String, char, char)"><B>startDataField(String, char, char)</B></A> -
Method in class org.marc4j.marcxml.<A HREF="org/marc4j/marcxml/MarcXmlFilter.html" title="class in org.marc4j.marcxml">MarcXmlFilter</A>
<DD><B>Deprecated.</B> Reports the starting element for a data field (010-999).
<DT><A HREF="org/marc4j/marcxml/MarcXmlReader.html#startDataField(java.lang.String, char, char)"><B>startDataField(String, char, char)</B></A> -
Method in class org.marc4j.marcxml.<A HREF="org/marc4j/marcxml/MarcXmlReader.html" title="class in org.marc4j.marcxml">MarcXmlReader</A>
<DD>Reports the starting element for a data field (010-999).
<DT><A HREF="org/marc4j/util/MarcWriter.html#startDataField(java.lang.String, char, char)"><B>startDataField(String, char, char)</B></A> -
Method in class org.marc4j.util.<A HREF="org/marc4j/util/MarcWriter.html" title="class in org.marc4j.util">MarcWriter</A>
<DD>
<DT><A HREF="org/marc4j/util/TaggedWriter.html#startDataField(java.lang.String, char, char)"><B>startDataField(String, char, char)</B></A> -
Method in class org.marc4j.util.<A HREF="org/marc4j/util/TaggedWriter.html" title="class in org.marc4j.util">TaggedWriter</A>
<DD>
<DT><A HREF="org/marc4j/marcxml/MarcXmlHandler.html#startElement(java.lang.String, java.lang.String, java.lang.String, org.xml.sax.Attributes)"><B>startElement(String, String, String, Attributes)</B></A> -
Method in class org.marc4j.marcxml.<A HREF="org/marc4j/marcxml/MarcXmlHandler.html" title="class in org.marc4j.marcxml">MarcXmlHandler</A>
<DD>
<DT><A HREF="org/marc4j/util/CodeTableHandler.html#startElement(java.lang.String, java.lang.String, java.lang.String, org.xml.sax.Attributes)"><B>startElement(String, String, String, Attributes)</B></A> -
Method in class org.marc4j.util.<A HREF="org/marc4j/util/CodeTableHandler.html" title="class in org.marc4j.util">CodeTableHandler</A>
<DD>
<DT><A HREF="org/marc4j/util/ReverseCodeTableHandler.html#startElement(java.lang.String, java.lang.String, java.lang.String, org.xml.sax.Attributes)"><B>startElement(String, String, String, Attributes)</B></A> -
Method in class org.marc4j.util.<A HREF="org/marc4j/util/ReverseCodeTableHandler.html" title="class in org.marc4j.util">ReverseCodeTableHandler</A>
<DD>
<DT><A HREF="org/marc4j/marcxml/ExtendedFilter.html#startEntity(java.lang.String)"><B>startEntity(String)</B></A> -
Method in class org.marc4j.marcxml.<A HREF="org/marc4j/marcxml/ExtendedFilter.html" title="class in org.marc4j.marcxml">ExtendedFilter</A>
<DD>
<DT><A HREF="org/marc4j/MarcHandler.html#startRecord(org.marc4j.marc.Leader)"><B>startRecord(Leader)</B></A> -
Method in interface org.marc4j.<A HREF="org/marc4j/MarcHandler.html" title="interface in org.marc4j">MarcHandler</A>
<DD>Receives notification at the start of each record.
<DT><A HREF="org/marc4j/helpers/DefaultHandler.html#startRecord(org.marc4j.marc.Leader)"><B>startRecord(Leader)</B></A> -
Method in class org.marc4j.helpers.<A HREF="org/marc4j/helpers/DefaultHandler.html" title="class in org.marc4j.helpers">DefaultHandler</A>
<DD>
<DT><A HREF="org/marc4j/helpers/RecordBuilder.html#startRecord(org.marc4j.marc.Leader)"><B>startRecord(Leader)</B></A> -
Method in class org.marc4j.helpers.<A HREF="org/marc4j/helpers/RecordBuilder.html" title="class in org.marc4j.helpers">RecordBuilder</A>
<DD>Creates a new record object.
<DT><A HREF="org/marc4j/marcxml/MarcXmlFilter.html#startRecord(org.marc4j.marc.Leader)"><B>startRecord(Leader)</B></A> -
Method in class org.marc4j.marcxml.<A HREF="org/marc4j/marcxml/MarcXmlFilter.html" title="class in org.marc4j.marcxml">MarcXmlFilter</A>
<DD><B>Deprecated.</B> Reports the starting element for a record and the leader node.
<DT><A HREF="org/marc4j/marcxml/MarcXmlReader.html#startRecord(org.marc4j.marc.Leader)"><B>startRecord(Leader)</B></A> -
Method in class org.marc4j.marcxml.<A HREF="org/marc4j/marcxml/MarcXmlReader.html" title="class in org.marc4j.marcxml">MarcXmlReader</A>
<DD>Reports the starting element for a record and the leader node.
<DT><A HREF="org/marc4j/util/MarcWriter.html#startRecord(org.marc4j.marc.Leader)"><B>startRecord(Leader)</B></A> -
Method in class org.marc4j.util.<A HREF="org/marc4j/util/MarcWriter.html" title="class in org.marc4j.util">MarcWriter</A>
<DD>
<DT><A HREF="org/marc4j/util/TaggedWriter.html#startRecord(org.marc4j.marc.Leader)"><B>startRecord(Leader)</B></A> -
Method in class org.marc4j.util.<A HREF="org/marc4j/util/TaggedWriter.html" title="class in org.marc4j.util">TaggedWriter</A>
<DD>
<DT><A HREF="org/marc4j/MarcHandler.html#subfield(char, char[])"><B>subfield(char, char[])</B></A> -
Method in interface org.marc4j.<A HREF="org/marc4j/MarcHandler.html" title="interface in org.marc4j">MarcHandler</A>
<DD>Receives notification of a data element (subfield).
<DT><A HREF="org/marc4j/helpers/DefaultHandler.html#subfield(char, char[])"><B>subfield(char, char[])</B></A> -
Method in class org.marc4j.helpers.<A HREF="org/marc4j/helpers/DefaultHandler.html" title="class in org.marc4j.helpers">DefaultHandler</A>
<DD>
<DT><A HREF="org/marc4j/helpers/RecordBuilder.html#subfield(char, char[])"><B>subfield(char, char[])</B></A> -
Method in class org.marc4j.helpers.<A HREF="org/marc4j/helpers/RecordBuilder.html" title="class in org.marc4j.helpers">RecordBuilder</A>
<DD>Adds a subfield to the data field.
<DT><A HREF="org/marc4j/marcxml/MarcXmlFilter.html#subfield(char, char[])"><B>subfield(char, char[])</B></A> -
Method in class org.marc4j.marcxml.<A HREF="org/marc4j/marcxml/MarcXmlFilter.html" title="class in org.marc4j.marcxml">MarcXmlFilter</A>
<DD><B>Deprecated.</B> Reports a subfield node.
<DT><A HREF="org/marc4j/marcxml/MarcXmlReader.html#subfield(char, char[])"><B>subfield(char, char[])</B></A> -
Method in class org.marc4j.marcxml.<A HREF="org/marc4j/marcxml/MarcXmlReader.html" title="class in org.marc4j.marcxml">MarcXmlReader</A>
<DD>Reports a subfield node.
<DT><A HREF="org/marc4j/util/MarcWriter.html#subfield(char, char[])"><B>subfield(char, char[])</B></A> -
Method in class org.marc4j.util.<A HREF="org/marc4j/util/MarcWriter.html" title="class in org.marc4j.util">MarcWriter</A>
<DD>
<DT><A HREF="org/marc4j/util/TaggedWriter.html#subfield(char, char[])"><B>subfield(char, char[])</B></A> -
Method in class org.marc4j.util.<A HREF="org/marc4j/util/TaggedWriter.html" title="class in org.marc4j.util">TaggedWriter</A>
<DD>
</DL>
<HR>
<A NAME="_T_"><!-- --></A><H2>
<B>T</B></H2>
<DL>
<DT><A HREF="org/marc4j/marc/Tag.html" title="class in org.marc4j.marc"><B>Tag</B></A> - class org.marc4j.marc.<A HREF="org/marc4j/marc/Tag.html" title="class in org.marc4j.marc">Tag</A>.<DD><code>Tag</code> defines behaviour for a MARC tag. <DT><A HREF="org/marc4j/marc/Tag.html#Tag()"><B>Tag()</B></A> -
Constructor for class org.marc4j.marc.<A HREF="org/marc4j/marc/Tag.html" title="class in org.marc4j.marc">Tag</A>
<DD>
<DT><A HREF="org/marc4j/util/TaggedWriter.html" title="class in org.marc4j.util"><B>TaggedWriter</B></A> - class org.marc4j.util.<A HREF="org/marc4j/util/TaggedWriter.html" title="class in org.marc4j.util">TaggedWriter</A>.<DD>Implements the <code>MarcHandler</code> interface
to write MARC data in tagged display format.<DT><A HREF="org/marc4j/util/TaggedWriter.html#TaggedWriter()"><B>TaggedWriter()</B></A> -
Constructor for class org.marc4j.util.<A HREF="org/marc4j/util/TaggedWriter.html" title="class in org.marc4j.util">TaggedWriter</A>
<DD>Default constructor.
<DT><A HREF="org/marc4j/util/TaggedWriter.html#TaggedWriter(java.io.OutputStream)"><B>TaggedWriter(OutputStream)</B></A> -
Constructor for class org.marc4j.util.<A HREF="org/marc4j/util/TaggedWriter.html" title="class in org.marc4j.util">TaggedWriter</A>
<DD>Creates a new instance.
<DT><A HREF="org/marc4j/util/TaggedWriter.html#TaggedWriter(java.io.OutputStream, java.lang.String)"><B>TaggedWriter(OutputStream, String)</B></A> -
Constructor for class org.marc4j.util.<A HREF="org/marc4j/util/TaggedWriter.html" title="class in org.marc4j.util">TaggedWriter</A>
<DD>Creates a new instance.
<DT><A HREF="org/marc4j/util/TaggedWriter.html#TaggedWriter(java.io.Writer)"><B>TaggedWriter(Writer)</B></A> -
Constructor for class org.marc4j.util.<A HREF="org/marc4j/util/TaggedWriter.html" title="class in org.marc4j.util">TaggedWriter</A>
<DD>Creates a new instance and registers the Writer object.
</DL>
<HR>
<A NAME="_U_"><!-- --></A><H2>
<B>U</B></H2>
<DL>
<DT><A HREF="org/marc4j/marc/MarcConstants.html#US"><B>US</B></A> -
Static variable in class org.marc4j.marc.<A HREF="org/marc4j/marc/MarcConstants.html" title="class in org.marc4j.marc">MarcConstants</A>
<DD>SUBFIELD DELIMITER
<DT><A HREF="org/marc4j/util/UnicodeToAnsel.html" title="class in org.marc4j.util"><B>UnicodeToAnsel</B></A> - class org.marc4j.util.<A HREF="org/marc4j/util/UnicodeToAnsel.html" title="class in org.marc4j.util">UnicodeToAnsel</A>.<DD>A utility to convert UCS/Unicode data to MARC-8.<DT><A HREF="org/marc4j/util/UnicodeToAnsel.html#UnicodeToAnsel()"><B>UnicodeToAnsel()</B></A> -
Constructor for class org.marc4j.util.<A HREF="org/marc4j/util/UnicodeToAnsel.html" title="class in org.marc4j.util">UnicodeToAnsel</A>
<DD>
<DT><A HREF="org/marc4j/util/UnicodeToIso5426.html" title="class in org.marc4j.util"><B>UnicodeToIso5426</B></A> - class org.marc4j.util.<A HREF="org/marc4j/util/UnicodeToIso5426.html" title="class in org.marc4j.util">UnicodeToIso5426</A>.<DD>A utility to convert UCS/Unicode data to UNIMARC (ISO 5426 charset).<DT><A HREF="org/marc4j/util/UnicodeToIso5426.html#UnicodeToIso5426()"><B>UnicodeToIso5426()</B></A> -
Constructor for class org.marc4j.util.<A HREF="org/marc4j/util/UnicodeToIso5426.html" title="class in org.marc4j.util">UnicodeToIso5426</A>
<DD>
<DT><A HREF="org/marc4j/util/UnicodeToIso6937.html" title="class in org.marc4j.util"><B>UnicodeToIso6937</B></A> - class org.marc4j.util.<A HREF="org/marc4j/util/UnicodeToIso6937.html" title="class in org.marc4j.util">UnicodeToIso6937</A>.<DD>A utility to convert UCS/Unicode data to ISO 6937.<DT><A HREF="org/marc4j/util/UnicodeToIso6937.html#UnicodeToIso6937()"><B>UnicodeToIso6937()</B></A> -
Constructor for class org.marc4j.util.<A HREF="org/marc4j/util/UnicodeToIso6937.html" title="class in org.marc4j.util">UnicodeToIso6937</A>
<DD>
<DT><A HREF="org/marc4j/marc/Leader.html#unmarshal(java.lang.String)"><B>unmarshal(String)</B></A> -
Method in class org.marc4j.marc.<A HREF="org/marc4j/marc/Leader.html" title="class in org.marc4j.marc">Leader</A>
<DD>Creates a leader object from a string object.
</DL>
<HR>
<A NAME="_V_"><!-- --></A><H2>
<B>V</B></H2>
<DL>
<DT><A HREF="org/marc4j/marc/VariableField.html" title="class in org.marc4j.marc"><B>VariableField</B></A> - class org.marc4j.marc.<A HREF="org/marc4j/marc/VariableField.html" title="class in org.marc4j.marc">VariableField</A>.<DD><code>VariableField</code> defines general behaviour for
variable fields. <DT><A HREF="org/marc4j/marc/VariableField.html#VariableField()"><B>VariableField()</B></A> -
Constructor for class org.marc4j.marc.<A HREF="org/marc4j/marc/VariableField.html" title="class in org.marc4j.marc">VariableField</A>
<DD>Default constructor.
<DT><A HREF="org/marc4j/marc/VariableField.html#VariableField(java.lang.String)"><B>VariableField(String)</B></A> -
Constructor for class org.marc4j.marc.<A HREF="org/marc4j/marc/VariableField.html" title="class in org.marc4j.marc">VariableField</A>
<DD>Creates a new <code>VariableField</code> for the supplied tag.
<DT><A HREF="org/marc4j/marc/Verifier.html" title="class in org.marc4j.marc"><B>Verifier</B></A> - class org.marc4j.marc.<A HREF="org/marc4j/marc/Verifier.html" title="class in org.marc4j.marc">Verifier</A>.<DD><code>Verifier</code> checks tags and data elements.</DL>
<HR>
<A NAME="_W_"><!-- --></A><H2>
<B>W</B></H2>
<DL>
<DT><A HREF="org/marc4j/marcxml/SaxErrorHandler.html#WARN_PRINT"><B>WARN_PRINT</B></A> -
Static variable in class org.marc4j.marcxml.<A HREF="org/marc4j/marcxml/SaxErrorHandler.html" title="class in org.marc4j.marcxml">SaxErrorHandler</A>
<DD>
<DT><A HREF="org/marc4j/ErrorHandler.html#warning(org.marc4j.MarcReaderException)"><B>warning(MarcReaderException)</B></A> -
Method in interface org.marc4j.<A HREF="org/marc4j/ErrorHandler.html" title="interface in org.marc4j">ErrorHandler</A>
<DD>Receive notification of a warning.
<DT><A HREF="org/marc4j/helpers/DefaultHandler.html#warning(org.marc4j.MarcReaderException)"><B>warning(MarcReaderException)</B></A> -
Method in class org.marc4j.helpers.<A HREF="org/marc4j/helpers/DefaultHandler.html" title="class in org.marc4j.helpers">DefaultHandler</A>
<DD>
<DT><A HREF="org/marc4j/helpers/ErrorHandlerImpl.html#warning(org.marc4j.MarcReaderException)"><B>warning(MarcReaderException)</B></A> -
Method in class org.marc4j.helpers.<A HREF="org/marc4j/helpers/ErrorHandlerImpl.html" title="class in org.marc4j.helpers">ErrorHandlerImpl</A>
<DD>
<DT><A HREF="org/marc4j/marcxml/SaxErrorHandler.html#warning(org.xml.sax.SAXParseException)"><B>warning(SAXParseException)</B></A> -
Method in class org.marc4j.marcxml.<A HREF="org/marc4j/marcxml/SaxErrorHandler.html" title="class in org.marc4j.marcxml">SaxErrorHandler</A>
<DD>
</DL>
<HR>
<A NAME="_X_"><!-- --></A><H2>
<B>X</B></H2>
<DL>
<DT><A HREF="org/marc4j/util/XmlMarcWriter.html" title="class in org.marc4j.util"><B>XmlMarcWriter</B></A> - class org.marc4j.util.<A HREF="org/marc4j/util/XmlMarcWriter.html" title="class in org.marc4j.util">XmlMarcWriter</A>.<DD>Provides a driver for <code>MarcXmlHandler</code>
to convert MARCXML to MARC tape format (ISO 2709) either
by providing a MARCXML document or by pre-processing a
different XML format by using an XSLT stylesheet that
outputs a well-formed MARCXML document. <DT><A HREF="org/marc4j/util/XmlMarcWriter.html#XmlMarcWriter()"><B>XmlMarcWriter()</B></A> -
Constructor for class org.marc4j.util.<A HREF="org/marc4j/util/XmlMarcWriter.html" title="class in org.marc4j.util">XmlMarcWriter</A>
<DD>
</DL>
<HR>
<A HREF="#_A_">A</A> <A HREF="#_B_">B</A> <A HREF="#_C_">C</A> <A HREF="#_D_">D</A> <A HREF="#_E_">E</A> <A HREF="#_F_">F</A> <A HREF="#_G_">G</A> <A HREF="#_H_">H</A> <A HREF="#_I_">I</A> <A HREF="#_L_">L</A> <A HREF="#_M_">M</A> <A HREF="#_O_">O</A> <A HREF="#_P_">P</A> <A HREF="#_R_">R</A> <A HREF="#_S_">S</A> <A HREF="#_T_">T</A> <A HREF="#_U_">U</A> <A HREF="#_V_">V</A> <A HREF="#_W_">W</A> <A HREF="#_X_">X</A>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<A NAME="navbar_bottom"><!-- --></A>
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_bottom_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Package</FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Use</FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="overview-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Index</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="index.html" target="_top"><B>FRAMES</B></A>
<A HREF="index-all.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_bottom"></A>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<HR>
Copyright 2001-2004 Bas Peters. All Rights Reserved.
</BODY>
</HTML>
|