• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

pkiraly / metadata-qa-marc / #1597

22 Nov 2025 11:44AM UTC coverage: 90.275% (+0.02%) from 90.258%
#1597

push

pkiraly
Add JavaDoc to quarto based documentation #713

36734 of 40691 relevant lines covered (90.28%)

0.9 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

87.5
/src/main/java/de/gwdg/metadataqa/marc/codes/StandardIdentifierReader.java
1
package de.gwdg.metadataqa.marc.codes;
2

3
import de.gwdg.metadataqa.api.util.FileUtils;
4
import java.io.IOException;
5
import java.net.URISyntaxException;
6
import java.util.HashMap;
7
import java.util.List;
8
import java.util.Map;
9

10
/**
11
 *
12
 */
13
public class StandardIdentifierReader {
×
14

15
  public static Map<String, StandardIdentifier> readStandardIdentifiers() 
16
      throws URISyntaxException, IOException {
17
    List<String> lines = FileUtils.readLinesFromResource("marc/standard-identifier.csv");
1✔
18
    Map<String, StandardIdentifier> standardIdentifiers = new HashMap<>();
1✔
19

20
    for (String line : lines) {
1✔
21
      String[] fields = line.split(";", 6);
1✔
22
      standardIdentifiers.put(
1✔
23
        fields[0],
24
        new StandardIdentifier(
25
          fields[0], fields[1], fields[2], fields[3], fields[4], fields[5]));
26
    }
1✔
27

28
    return standardIdentifiers;
1✔
29
  }
30
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc