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

pkiraly / metadata-qa-marc / #1527

22 Aug 2025 02:21PM UTC coverage: 90.345%. Remained the same
#1527

push

pkiraly
Improve timeline handling

5191 of 6416 new or added lines in 219 files covered. (80.91%)

886 existing lines in 78 files now uncovered.

36717 of 40641 relevant lines covered (90.34%)

0.9 hits per line

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

83.33
/src/main/java/de/gwdg/metadataqa/marc/model/SolrFieldType.java
1
package de.gwdg.metadataqa.marc.model;
2

3
public enum SolrFieldType {
1✔
4

5
  MARC("marc-tags"),
1✔
6
  HUMAN("human-readable"),
1✔
7
  MIXED("mixed"),
1✔
8
  ;
9

10
  private final String type;
11

12
  SolrFieldType(String type) {
1✔
13
    this.type = type;
1✔
14
  }
1✔
15

16
  public static SolrFieldType byCode(String code) {
17
    for (SolrFieldType type : values()) {
1✔
18
      if (type.type.equalsIgnoreCase(code)) {
1✔
19
        return type;
1✔
20
      }
21
    }
UNCOV
22
    return null;
×
23
  }
24

25
  public String getType() {
UNCOV
26
    return type;
×
27
  }
28
}
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