Skip to content

Package: SetNode

SetNode

nameinstructionbranchcomplexitylinemethod
SetNode()
M: 0 C: 3
100%
M: 0 C: 0
100%
M: 0 C: 1
100%
M: 0 C: 2
100%
M: 0 C: 1
100%
SetNode(String)
M: 0 C: 4
100%
M: 0 C: 0
100%
M: 0 C: 1
100%
M: 0 C: 2
100%
M: 0 C: 1
100%
initItems()
M: 0 C: 4
100%
M: 0 C: 0
100%
M: 0 C: 1
100%
M: 0 C: 1
100%
M: 0 C: 1
100%
lambda$writeValue$0(JsonGenerator, JsonNode)
M: 0 C: 4
100%
M: 0 C: 0
100%
M: 0 C: 1
100%
M: 0 C: 1
100%
M: 0 C: 1
100%
writeValue(JsonGenerator)
M: 0 C: 11
100%
M: 0 C: 0
100%
M: 0 C: 1
100%
M: 0 C: 4
100%
M: 0 C: 1
100%

Coverage

1: /*
2: * JB4JSON-LD
3: * Copyright (C) 2024 Czech Technical University in Prague
4: *
5: * This library is free software; you can redistribute it and/or
6: * modify it under the terms of the GNU Lesser General Public
7: * License as published by the Free Software Foundation; either
8: * version 3.0 of the License, or (at your option) any later version.
9: *
10: * This library is distributed in the hope that it will be useful,
11: * but WITHOUT ANY WARRANTY; without even the implied warranty of
12: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13: * Lesser General Public License for more details.
14: *
15: * You should have received a copy of the GNU Lesser General Public
16: * License along with this library.
17: */
18: package cz.cvut.kbss.jsonld.serialization.model;
19:
20: import cz.cvut.kbss.jsonld.serialization.JsonGenerator;
21:
22: import java.io.IOException;
23: import java.util.LinkedHashSet;
24: import java.util.Set;
25:
26: /**
27: * Represents a node serialized as a simple JSON array.
28: * <p>
29: * Note that in JSON-LD, the JSON array represents a set and is thus unordered.
30: */
31: public class SetNode extends CollectionNode<Set<JsonNode>> {
32:
33: public SetNode() {
34: }
35:
36: public SetNode(String name) {
37: super(name);
38: }
39:
40: @Override
41: Set<JsonNode> initItems() {
42: return new LinkedHashSet<>();
43: }
44:
45: @Override
46: protected void writeValue(final JsonGenerator writer) throws IOException {
47: writer.writeArrayStart();
48: items.forEach(item -> item.write(writer));
49: writer.writeArrayEnd();
50: }
51: }