Class IoCore
- java.lang.Object
-
- org.apache.tinkerpop.gremlin.structure.io.IoCore
-
@Deprecated public final class IoCore extends Object
Deprecated.As of release 3.4.0, partially replaced byGraphTraversalSource.io(String)
. NoticeGraphTraversalSource.io(String)
doesn't support read operation fromjava.io.InputStream
or write operation tojava.io.OutputStream
. Thus for readers or writers which need this functionality are safe to use this deprecated method. There is no intention to remove this method unless all the functionality is replaced by the `io` step ofGraphTraversalSource
.Constructs the coreIo.Builder
implementations enabling a bit of shorthand syntax by importing these methods statically.- Author:
- Stephen Mallette (http://stephen.genoprime.com)
-
-
Method Summary
All Methods Static Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static Io.Builder
createIoBuilder(String graphFormat)
Deprecated.static Io.Builder<GraphMLIo>
graphml()
Deprecated.Creates a basic GraphML-basedIo.Builder
.static Io.Builder<GraphSONIo>
graphson()
Deprecated.Creates a basic GraphSON-basedIo.Builder
.static Io.Builder<GryoIo>
gryo()
Deprecated.Creates a basic Gryo-basedIo.Builder
.
-
-
-
Method Detail
-
graphml
public static Io.Builder<GraphMLIo> graphml()
Deprecated.Creates a basic GraphML-basedIo.Builder
.
-
graphson
public static Io.Builder<GraphSONIo> graphson()
Deprecated.Creates a basic GraphSON-basedIo.Builder
.
-
gryo
public static Io.Builder<GryoIo> gryo()
Deprecated.Creates a basic Gryo-basedIo.Builder
.
-
createIoBuilder
public static Io.Builder createIoBuilder(String graphFormat) throws ClassNotFoundException, IllegalAccessException, InstantiationException
Deprecated.
-
-