Class LegacyGraphSONReader.Builder
- java.lang.Object
-
- org.apache.tinkerpop.gremlin.structure.io.graphson.LegacyGraphSONReader.Builder
-
- Enclosing class:
- LegacyGraphSONReader
public static final class LegacyGraphSONReader.Builder extends Object
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description LegacyGraphSONReader.Builder
addCustomModule(org.apache.tinkerpop.shaded.jackson.databind.module.SimpleModule custom)
Supply a mapper module for serialization/deserialization.LegacyGraphSONReader.Builder
batchSize(long batchSize)
Number of mutations to perform before a commit is executed.LegacyGraphSONReader
create()
LegacyGraphSONReader.Builder
loadCustomModules(boolean loadCustomModules)
Try to loadSimpleModule
instances from the current classpath.
-
-
-
Method Detail
-
addCustomModule
public LegacyGraphSONReader.Builder addCustomModule(org.apache.tinkerpop.shaded.jackson.databind.module.SimpleModule custom)
Supply a mapper module for serialization/deserialization.
-
loadCustomModules
public LegacyGraphSONReader.Builder loadCustomModules(boolean loadCustomModules)
Try to loadSimpleModule
instances from the current classpath. These are loaded in addition to the one supplied to theaddCustomModule(SimpleModule)
;
-
batchSize
public LegacyGraphSONReader.Builder batchSize(long batchSize)
Number of mutations to perform before a commit is executed.
-
create
public LegacyGraphSONReader create()
-
-