Skip to content

Commit

Permalink
Add hbz element 964
Browse files Browse the repository at this point in the history
  • Loading branch information
TobiasNx committed Aug 19, 2024
1 parent 66aaaf8 commit 10a4c84
Showing 1 changed file with 42 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
package de.gwdg.metadataqa.marc.definition.tags.hbztags;

import de.gwdg.metadataqa.marc.definition.Cardinality;
import de.gwdg.metadataqa.marc.definition.structure.DataFieldDefinition;
import de.gwdg.metadataqa.marc.definition.structure.Indicator;

/**
* In Aleph benötigte Informationen (Wickelfeld)
*/
public class Tag964 extends DataFieldDefinition {

private static Tag964 uniqueInstance;

private Tag964() {
initialize();
postCreation();
}

public static Tag964 getInstance() {
if (uniqueInstance == null)
uniqueInstance = new Tag964();
return uniqueInstance;
}

private void initialize() {
tag = "964";
label = "In Aleph benötigte Informationen (Wickelfeld)";
mqTag = "InAlephbenötigteInformationenWickelfeld";
cardinality = Cardinality.Nonrepeatable;
// descriptionUrl = "https://service-wiki.hbz-nrw.de/pages/viewpage.action?pageId=724304028";

ind1 = new Indicator();
ind2 = new Indicator();

setSubfieldsWithCardinality(
"A", "A", "R",
"F", "F", "R",
"V", "V", "R"
);

}
}

0 comments on commit 10a4c84

Please sign in to comment.