Package: ObjectPropertyValueSerializer
ObjectPropertyValueSerializer
name | instruction | branch | complexity | line | method | ||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
ObjectPropertyValueSerializer(ObjectGraphTraverser) |
|
|
|
|
|
||||||||||||||||||||
serialize(Object, SerializationContext) |
|
|
|
|
|
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.serializer.compact;
19:
20: import cz.cvut.kbss.jsonld.serialization.model.JsonNode;
21: import cz.cvut.kbss.jsonld.serialization.serializer.ValueSerializer;
22: import cz.cvut.kbss.jsonld.serialization.traversal.ObjectGraphTraverser;
23: import cz.cvut.kbss.jsonld.serialization.traversal.SerializationContext;
24:
25: /**
26: * Value serializer for object property values.
27: */
28: public class ObjectPropertyValueSerializer implements ValueSerializer {
29:
30: private final ObjectGraphTraverser graphTraverser;
31:
32: public ObjectPropertyValueSerializer(ObjectGraphTraverser graphTraverser) {
33: this.graphTraverser = graphTraverser;
34: }
35:
36: @Override
37: public JsonNode serialize(Object value, SerializationContext ctx) {
38: graphTraverser.traverse(ctx);
39: return null;
40: }
41: }