Class GraphMLMapper.Builder
- java.lang.Object
-
- org.apache.tinkerpop.gremlin.structure.io.graphml.GraphMLMapper.Builder
-
- All Implemented Interfaces:
Mapper.Builder<GraphMLMapper.Builder>
- Enclosing class:
- GraphMLMapper
public static final class GraphMLMapper.Builder extends Object implements Mapper.Builder<GraphMLMapper.Builder>
-
-
Constructor Summary
Constructors Constructor Description Builder()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description GraphMLMapper.Builder
addRegistry(IoRegistry registry)
Adds a vendor suppliedIoRegistry
to theMapper.Builder
which enables it to check for vendor custom serializers to add to theMapper
.GraphMLMapper
create()
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.apache.tinkerpop.gremlin.structure.io.Mapper.Builder
addRegistries
-
-
-
-
Method Detail
-
addRegistry
public GraphMLMapper.Builder addRegistry(IoRegistry registry)
Description copied from interface:Mapper.Builder
Adds a vendor suppliedIoRegistry
to theMapper.Builder
which enables it to check for vendor custom serializers to add to theMapper
. AllIo
implementations should expose this method via thisMapper.Builder
so that it is compatible withGraph.io(org.apache.tinkerpop.gremlin.structure.io.Io.Builder<I>)
. Successive calls to this method will add multiple registries. Registry order must be respected when doing so. In other words, data written withIoRegistry
A
added first andB
second must be read by aMapper
with that same registry ordering. Attempting to addB
beforeA
will result in errors.- Specified by:
addRegistry
in interfaceMapper.Builder<GraphMLMapper.Builder>
-
create
public GraphMLMapper create()
-
-