Skip to content

Commit

Permalink
issue #113: Reading MARCMaker format
Browse files Browse the repository at this point in the history
  • Loading branch information
pkiraly committed Dec 10, 2021
1 parent 4dcd4d6 commit c09a64c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -284,6 +284,13 @@ options:
i.e. it is a text file, where each line is a distinct field, the
same way as MARC records are usually displayed in the MARC21
standard documentation.
* `-m`, `--marcFormat` The input format. Possible values are
* `ISO`: Binary (ISO 2709)
* `XML`: MARCXML
* `ALEPHSEQ`: ALEPHSEQ
* `LINE_SEPARATED`: Line separated binary MARC (each line contains one record)
* `MARC_LINE`: MARC Line
* `MARCMAKER`: MARCMaker format
* parameters to limit the validation:
* `-i [record ID]`, `--id [record ID]` validates only a single record
having the specifies identifier (the content of 001)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ public enum MarcFormat {
ALEPHSEQ("ALEPHSEQ", "ALEPHSEQ"),
LINE_SEPARATED("LINE_SEPARATED", "Line separated binary MARC (each line contains one record)"),
MARC_LINE("MARC_LINE", "MARC Line"),
MARC_MAKER("MARC_MAKER", "MARCMaker");
MARC_MAKER("MARCMAKER", "MARCMaker");

String code;
String label;
Expand Down

0 comments on commit c09a64c

Please sign in to comment.