Modifier and Type | Method and Description |
---|---|
default <I extends Io> |
Graph.io(Io.Builder<I> builder)
Construct a particular
Io implementation for reading and writing the Graph and other data. |
Modifier and Type | Interface and Description |
---|---|
static interface |
Io.Builder<I extends Io>
Helps to construct an
Io implementation and should be implemented by every such implementation as
that class will be passed to Graph#io(Builder) by the user. |
Modifier and Type | Method and Description |
---|---|
Io.Builder<? extends Io> |
Io.Builder.graph(Graph g)
Vendors use this method to supply the current instance of their
Graph to the builder. |
Io.Builder<? extends Io> |
Io.Builder.registry(IoRegistry registry)
Vendors use this method to supply an
IoRegistry to the Io implementation. |
Modifier and Type | Method and Description |
---|---|
List<<any>> |
IoRegistry.find(Class<? extends Io> builderClass)
|
List<<any>> |
AbstractIoRegistry.find(Class<? extends Io> builderClass)
|
<S> List<<any>> |
IoRegistry.find(Class<? extends Io> builderClass,
Class<S> serializerType)
|
<S> List<<any>> |
AbstractIoRegistry.find(Class<? extends Io> builderClass,
Class<S> serializerType)
|
protected void |
AbstractIoRegistry.register(Class<? extends Io> ioClass,
Class clazz,
Object serializer)
Add a "serializer" for the
Mapper . |
Modifier and Type | Class and Description |
---|---|
class |
GraphMLIo
Constructs GraphML IO implementations given a
Graph and IoRegistry . |
Modifier and Type | Class and Description |
---|---|
class |
GraphSONIo
Constructs GraphSON IO implementations given a
Graph and IoRegistry . |
Modifier and Type | Class and Description |
---|---|
class |
GryoIo
Constructs Gryo IO implementations given a
Graph and IoRegistry . |
Copyright © 2013–2015 Apache Software Foundation. All rights reserved.